Add a missing quotation mark.

This commit is contained in:
Brett Cannon 2007-11-03 06:47:02 +00:00
parent 7c3e79f67f
commit b13f70df1b
1 changed files with 1 additions and 1 deletions

View 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):