summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2007-11-03 06:47:02 (GMT)
committerBrett Cannon <bcannon@gmail.com>2007-11-03 06:47:02 (GMT)
commitb13f70df1b0657f3fe35695dc818fa0da967af5d (patch)
treee904c59253ce3a1284fe0a96086a9fe414e9aede
parent7c3e79f67f6191fb500144db1d484d8bb8619f5a (diff)
downloadcpython-b13f70df1b0657f3fe35695dc818fa0da967af5d.zip
cpython-b13f70df1b0657f3fe35695dc818fa0da967af5d.tar.gz
cpython-b13f70df1b0657f3fe35695dc818fa0da967af5d.tar.bz2
Add a missing quotation mark.
-rw-r--r--Lib/test/test_exceptions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py
index 657cbc5..77a6018 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):