Shouldn't use newdir.dir(), which no longer exists!

This commit is contained in:
Guido van Rossum 1998-05-22 14:11:57 +00:00
parent b88679b2a4
commit 7ef2a1de9b
1 changed files with 1 additions and 2 deletions

View File

@ -54,8 +54,7 @@ class Cmd:
return
func()
else:
import newdir
names = newdir.dir(self.__class__)
names = dir(self.__class__)
cmds_doc = []
cmds_undoc = []
help = {}