diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-06-20 18:59:07 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-06-20 18:59:07 (GMT) |
commit | 729981861aec5f1be14807d909b22d5e86a795c3 (patch) | |
tree | 99e7c99999b36b8b2c3561733c81261e6a7b6ff3 /Lib/test/test_pydoc.py | |
parent | 454a5155d2f1501d25e9f24c767b6a10d56947d9 (diff) | |
download | cpython-729981861aec5f1be14807d909b22d5e86a795c3.zip cpython-729981861aec5f1be14807d909b22d5e86a795c3.tar.gz cpython-729981861aec5f1be14807d909b22d5e86a795c3.tar.bz2 |
Issue #21768: fix type in test_pydoc, patch by Claudiu Popa.
Diffstat (limited to 'Lib/test/test_pydoc.py')
-rw-r--r-- | Lib/test/test_pydoc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py index 763c319..6d27a30 100644 --- a/Lib/test/test_pydoc.py +++ b/Lib/test/test_pydoc.py @@ -585,7 +585,7 @@ class TestHelper(unittest.TestCase): try: pydoc.render_doc(name) except ImportError: - self.fail('finding the doc of {!r} failed'.format(o)) + self.fail('finding the doc of {!r} failed'.format(name)) for name in ('not__builtin__', 'strrr', 'strr.translate', 'str.trrrranslate', '__builtin__.strrr', |