diff options
Diffstat (limited to 'Lib/lib2to3/fixes/fix_future.py')
-rw-r--r-- | Lib/lib2to3/fixes/fix_future.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/lib2to3/fixes/fix_future.py b/Lib/lib2to3/fixes/fix_future.py index 861e13c..fbcb86a 100644 --- a/Lib/lib2to3/fixes/fix_future.py +++ b/Lib/lib2to3/fixes/fix_future.py @@ -9,6 +9,8 @@ from .. import fixer_base from ..fixer_util import BlankLine class FixFuture(fixer_base.BaseFix): + BM_compatible = True + PATTERN = """import_from< 'from' module_name="__future__" 'import' any >""" # This should be run last -- some things check for the import |