summaryrefslogtreecommitdiffstats
path: root/Lib/lib2to3/fixes/fix_paren.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/lib2to3/fixes/fix_paren.py')
-rw-r--r--Lib/lib2to3/fixes/fix_paren.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib2to3/fixes/fix_paren.py b/Lib/lib2to3/fixes/fix_paren.py
index b205aa7..8650cd9 100644
--- a/Lib/lib2to3/fixes/fix_paren.py
+++ b/Lib/lib2to3/fixes/fix_paren.py
@@ -39,6 +39,6 @@ class FixParen(fixer_base.BaseFix):
lparen = LParen()
lparen.prefix = target.prefix
- target.prefix = "" # Make it hug the parentheses
+ target.prefix = u"" # Make it hug the parentheses
target.insert_child(0, lparen)
target.append_child(RParen())