diff options
Diffstat (limited to 'Lib/lib2to3/fixes/fix_raw_input.py')
-rw-r--r-- | Lib/lib2to3/fixes/fix_raw_input.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib2to3/fixes/fix_raw_input.py b/Lib/lib2to3/fixes/fix_raw_input.py index a51bb69..3a73b81 100644 --- a/Lib/lib2to3/fixes/fix_raw_input.py +++ b/Lib/lib2to3/fixes/fix_raw_input.py @@ -14,4 +14,4 @@ class FixRawInput(fixer_base.BaseFix): def transform(self, node, results): name = results["name"] - name.replace(Name("input", prefix=name.prefix)) + name.replace(Name(u"input", prefix=name.prefix)) |