[Python-checkins] r58822 - python/trunk/Lib/test/test_exceptions.py
brett.cannon
python-checkins at python.org
Sat Nov 3 07:47:05 CET 2007
Author: brett.cannon
Date: Sat Nov 3 07:47:02 2007
New Revision: 58822
Modified:
python/trunk/Lib/test/test_exceptions.py
Log:
Add a missing quotation mark.
Modified: python/trunk/Lib/test/test_exceptions.py
==============================================================================
--- python/trunk/Lib/test/test_exceptions.py (original)
+++ python/trunk/Lib/test/test_exceptions.py Sat Nov 3 07:47:02 2007
@@ -300,7 +300,7 @@
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):
More information about the Python-checkins
mailing list