diff options
-rw-r--r-- | Lib/dumbdbm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dumbdbm.py b/Lib/dumbdbm.py index 30ec114..e508349 100644 --- a/Lib/dumbdbm.py +++ b/Lib/dumbdbm.py @@ -21,7 +21,7 @@ is read when the database is opened, and some updates rewrite the whole index) """ -_os = __import__('os') +import os as _os import __builtin__ _open = __builtin__.open |