diff options
Diffstat (limited to 'Lib/lib2to3/fixes/fix_imports2.py')
-rw-r--r-- | Lib/lib2to3/fixes/fix_imports2.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/lib2to3/fixes/fix_imports2.py b/Lib/lib2to3/fixes/fix_imports2.py index 6c1f3a1..e82f7e4 100644 --- a/Lib/lib2to3/fixes/fix_imports2.py +++ b/Lib/lib2to3/fixes/fix_imports2.py @@ -4,8 +4,8 @@ from . import fix_imports MAPPING = { - 'whichdb': ('dbm', ['whichdb']), - 'anydbm': ('dbm', ['error', 'open']), + 'whichdb': 'dbm', + 'anydbm': 'dbm', } |