diff options
Diffstat (limited to 'Lib/lib2to3/fixes/fix_input.py')
| -rw-r--r-- | Lib/lib2to3/fixes/fix_input.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/lib2to3/fixes/fix_input.py b/Lib/lib2to3/fixes/fix_input.py index e0264cf..3e330f6 100644 --- a/Lib/lib2to3/fixes/fix_input.py +++ b/Lib/lib2to3/fixes/fix_input.py @@ -22,5 +22,5 @@ class FixInput(fixer_base.BaseFix): return new = node.clone() - new.set_prefix("") - return Call(Name("eval"), [new], prefix=node.get_prefix()) + new.set_prefix(u"") + return Call(Name(u"eval"), [new], prefix=node.get_prefix()) |
