diff options
Diffstat (limited to 'Lib/imputil.py')
-rw-r--r-- | Lib/imputil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/imputil.py b/Lib/imputil.py index 65e799c..d83b16e 100644 --- a/Lib/imputil.py +++ b/Lib/imputil.py @@ -66,7 +66,7 @@ class ImportManager: # This is the Importer that we use for grabbing stuff from the # filesystem. It defines one more method (import_from_dir) for our use. - if not fs_imp: + if fs_imp is None: cls = self.clsFilesystemImporter or _FilesystemImporter fs_imp = cls() self.fs_imp = fs_imp |