diff options
| author | Raymond Hettinger <python@rcn.com> | 2014-08-10 10:41:52 -0700 |
|---|---|---|
| committer | Raymond Hettinger <python@rcn.com> | 2014-08-10 10:41:52 -0700 |
| commit | d4cc49f5f367f488379150588d07c7f77dc917e5 (patch) | |
| tree | 97b4a85c63fe35d488668f2f3d9652231431a572 /Lib/traceback.py | |
| parent | 9aebd07ac628842838a281dad04c891c410b0396 (diff) | |
| parent | 7f8878040c398fac32114fb7072cfabf7f7f3fa6 (diff) | |
| download | cpython-d4cc49f5f367f488379150588d07c7f77dc917e5.tar.gz | |
merge
Diffstat (limited to 'Lib/traceback.py')
| -rw-r--r-- | Lib/traceback.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/traceback.py b/Lib/traceback.py index faf593a735..c1ab36ec44 100644 --- a/Lib/traceback.py +++ b/Lib/traceback.py @@ -205,7 +205,7 @@ def _format_exception_only_iter(etype, value): yield _format_final_exc_line(etype, value) return - stype = etype.__name__ + stype = etype.__qualname__ smod = etype.__module__ if smod not in ("__main__", "builtins"): stype = smod + '.' + stype |
