From: Brett Cannon Date: Sat, 3 Nov 2007 06:47:02 +0000 (+0000) Subject: Add a missing quotation mark. X-Git-Tag: v2.6a1~1095 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b13f70df1b0657f3fe35695dc818fa0da967af5d;p=python Add a missing quotation mark. --- diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py index 657cbc5327..77a6018f36 100644 --- a/Lib/test/test_exceptions.py +++ b/Lib/test/test_exceptions.py @@ -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):