diff unix.py @ 94:b7fb64ce03d9

Fixed a couple of bugs
author Oleg Oshmyan <chortos@inbox.lv>
date Mon, 28 Feb 2011 21:35:25 +0000
parents c62c9bfd614a
children 995502cdafc6
line wrap: on
line diff
--- a/unix.py	Mon Feb 28 16:58:16 2011 +0000
+++ b/unix.py	Mon Feb 28 21:35:25 2011 +0000
@@ -59,7 +59,7 @@
 		try:
 			case.process = Popen(*args, **kwargs)
 		except OSError:
-			raise CannotStartTestee(sys.exc_info()[1])
+			raise testcases.CannotStartTestee(sys.exc_info()[1])
 		case.time_started = clock()
 		if not case.maxtime:
 			while True: