When skipping a test, do not include a spurious space between the exception
name and the ":" that separates it from the value.  (Minor cleanup.)
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
index f925645..ef05fcf 100755
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -241,7 +241,7 @@
         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