summaryrefslogtreecommitdiff
path: root/Lib/cmd.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-08-19 16:49:37 +0000
committerGuido van Rossum <guido@python.org>1992-08-19 16:49:37 +0000
commit732282fa1130a027a51d406ed5132cde9ac636e7 (patch)
treef4913e6975325c8172da1d2c405116e9820f79ce /Lib/cmd.py
parent1e28e5e59634f56cdeaff528afb122a5735adf09 (diff)
downloadcpython-git-732282fa1130a027a51d406ed5132cde9ac636e7.tar.gz
Module getattr doesn't exist any more, it's now called newdir.
Diffstat (limited to 'Lib/cmd.py')
-rw-r--r--Lib/cmd.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/cmd.py b/Lib/cmd.py
index ab37a98dfa..e07019f2a8 100644
--- a/Lib/cmd.py
+++ b/Lib/cmd.py
@@ -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_':