]> granicus.if.org Git - python/commitdiff
Fix unicode literal.
authorGeorg Brandl <georg@python.org>
Mon, 2 Aug 2010 22:59:44 +0000 (22:59 +0000)
committerGeorg Brandl <georg@python.org>
Mon, 2 Aug 2010 22:59:44 +0000 (22:59 +0000)
Tools/scripts/win_add2path.py

index b024789dfd860b20d467cd27e625be7ab262ff8c..9259b441f763d66ff051c9384d1cdeb44b8e6885 100644 (file)
@@ -15,7 +15,7 @@ import winreg
 HKCU = winreg.HKEY_CURRENT_USER
 ENV = "Environment"
 PATH = "PATH"
-DEFAULT = u"%PATH%"
+DEFAULT = "%PATH%"
 
 def modify():
     pythonpath = os.path.dirname(os.path.normpath(sys.executable))