commit | d62522ab563fa508acbacacab8c343052eb08bb6 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Thu Jan 27 00:12:08 2011 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Thu Jan 27 00:12:08 2011 +0000 |
tree | f0b53d22a82964d9b99bfd366433e72bd7876d78 | |
parent | 6c3f01791b9aaaab98bcb14ad81979572ae1abfe [diff] [blame] |
Issue 11020: command-line pyclbr broken due to missing 2-to-3 conversion.
diff --git a/Lib/pyclbr.py b/Lib/pyclbr.py index c87ec66..52cbdd5 100644 --- a/Lib/pyclbr.py +++ b/Lib/pyclbr.py
@@ -325,7 +325,7 @@ else: path = [] dict = readmodule_ex(mod, path) - objs = dict.values() + objs = list(dict.values()) objs.sort(key=lambda a: getattr(a, 'lineno', 0)) for obj in objs: if isinstance(obj, Class):