[Python-checkins] r80636 - sandbox/trunk/2to3/lib2to3/fixes/fix_tuple_params.py

benjamin.peterson python-checkins at python.org
Thu Apr 29 23:02:41 CEST 2010


Author: benjamin.peterson
Date: Thu Apr 29 23:02:41 2010
New Revision: 80636

Log:
unicode literal

Modified:
   sandbox/trunk/2to3/lib2to3/fixes/fix_tuple_params.py

Modified: sandbox/trunk/2to3/lib2to3/fixes/fix_tuple_params.py
==============================================================================
--- sandbox/trunk/2to3/lib2to3/fixes/fix_tuple_params.py	(original)
+++ sandbox/trunk/2to3/lib2to3/fixes/fix_tuple_params.py	Thu Apr 29 23:02:41 2010
@@ -54,7 +54,7 @@
             end = Newline()
         else:
             start = 0
-            indent = "; "
+            indent = u"; "
             end = pytree.Leaf(token.INDENT, u"")
 
         # We need access to self for new_name(), and making this a method


More information about the Python-checkins mailing list