When skipping a test, do not include a spurious space between the exception

name and the ":" that separates it from the value.  (Minor cleanup.)
This commit is contained in:
Fred Drake 2000-08-23 20:34:40 +00:00
parent 4d746fca3d
commit 27c4b39025

View File

@ -241,7 +241,7 @@ def runtest(test, generate, verbose, quiet, testdir = None):
return 0
except:
type, value = sys.exc_info()[:2]
print "test", test, "crashed --", type, ":", value
print "test", test, "crashed --", str(type) + ":", value
if verbose:
traceback.print_exc(file=sys.stdout)
return 0