Commit 732282fa authored by Guido van Rossum's avatar Guido van Rossum

Module getattr doesn't exist any more, it's now called newdir.

parent 1e28e5e5
......@@ -55,8 +55,8 @@ class Cmd:
return
func()
else:
import getattr
names = getattr.dir(self)
import newdir
names = newdir.dir(self)
cmds = []
for name in names:
if name[:3] == 'do_':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment