diff options
Diffstat (limited to 'Lib/lib2to3/fixes/fix_itertools.py')
-rw-r--r-- | Lib/lib2to3/fixes/fix_itertools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib2to3/fixes/fix_itertools.py b/Lib/lib2to3/fixes/fix_itertools.py index 8e78d6c..067641b 100644 --- a/Lib/lib2to3/fixes/fix_itertools.py +++ b/Lib/lib2to3/fixes/fix_itertools.py @@ -29,7 +29,7 @@ class FixItertools(fixer_base.BaseFix): prefix = None func = results['func'][0] if ('it' in results and - func.value not in ('ifilterfalse', 'izip_longest')): + func.value not in (u'ifilterfalse', u'izip_longest')): dot, it = (results['dot'], results['it']) # Remove the 'itertools' prefix = it.prefix |