]> granicus.if.org Git - python/commitdiff
Add a missing quotation mark.
authorBrett Cannon <bcannon@gmail.com>
Sat, 3 Nov 2007 06:47:02 +0000 (06:47 +0000)
committerBrett Cannon <bcannon@gmail.com>
Sat, 3 Nov 2007 06:47:02 +0000 (06:47 +0000)
Lib/test/test_exceptions.py

index 657cbc532704ed53a73df8fbabfd4c1646076b19..77a6018f361324432da74f87e80d11bf280b25b3 100644 (file)
@@ -300,7 +300,7 @@ class ExceptionTests(unittest.TestCase):
                                 got = repr(getattr(new, checkArgName))
                                 want = repr(expected[checkArgName])
                                 self.assertEquals(got, want,
-                                                  'pickled "%r", attribute "%s' %
+                                                  'pickled "%r", attribute "%s"' %
                                                   (e, checkArgName))
 
     def testSlicing(self):