[pypy-svn] r70750 - pypy/trunk/pypy/interpreter

arigo at codespeak.net arigo at codespeak.net
Thu Jan 21 16:17:15 CET 2010


Author: arigo
Date: Thu Jan 21 16:17:14 2010
New Revision: 70750

Modified:
   pypy/trunk/pypy/interpreter/error.py
Log:
Fix punctuation.


Modified: pypy/trunk/pypy/interpreter/error.py
==============================================================================
--- pypy/trunk/pypy/interpreter/error.py	(original)
+++ pypy/trunk/pypy/interpreter/error.py	Thu Jan 21 16:17:14 2010
@@ -203,8 +203,8 @@
             w_instclass = space.exception_getclass(w_inst)
             if not space.exception_is_valid_class_w(w_instclass):
                 instclassname = w_instclass.getname(space, '?')
-                msg = ("exceptions must be classes, or instances,"
-                       "or strings (deprecated) not %s" % (instclassname,))
+                msg = ("exceptions must be classes, or instances, "
+                       "or strings (deprecated), not %s" % (instclassname,))
                 raise OperationError(space.w_TypeError, space.wrap(msg))
 
             if not space.is_w(w_value, space.w_None):



More information about the Pypy-commit mailing list