Fix the class browser to work even when the file is not on sys.path.

This commit is contained in:
Guido van Rossum 1998-12-18 15:52:54 +00:00
parent 060f24ce97
commit 654387efbd
2 changed files with 3 additions and 3 deletions

View file

@ -76,7 +76,7 @@ class MultiEditorWindow(EditorWindow):
if pyclbr._modules.has_key(base):
del pyclbr._modules[base]
import ClassBrowser
ClassBrowser.ClassBrowser(self.flist, base)
ClassBrowser.ClassBrowser(self.flist, base, [head])
class FileList: