[Python-checkins] r83612 - python/branches/py3k/Tools/scripts/win_add2path.py

georg.brandl python-checkins at python.org
Tue Aug 3 00:59:44 CEST 2010


Author: georg.brandl
Date: Tue Aug  3 00:59:44 2010
New Revision: 83612

Log:
Fix unicode literal.

Modified:
   python/branches/py3k/Tools/scripts/win_add2path.py

Modified: python/branches/py3k/Tools/scripts/win_add2path.py
==============================================================================
--- python/branches/py3k/Tools/scripts/win_add2path.py	(original)
+++ python/branches/py3k/Tools/scripts/win_add2path.py	Tue Aug  3 00:59:44 2010
@@ -15,7 +15,7 @@
 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))


More information about the Python-checkins mailing list