[Python-checkins] python/dist/src/Tools/msi msi.py,1.11,1.12

loewis at users.sourceforge.net loewis at users.sourceforge.net
Sun Sep 19 20:36:50 CEST 2004


Update of /cvsroot/python/python/dist/src/Tools/msi
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4541

Modified Files:
	msi.py 
Log Message:
Fix lib-tk PythonPath.


Index: msi.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/msi/msi.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- msi.py	12 Sep 2004 03:49:31 -0000	1.11
+++ msi.py	19 Sep 2004 18:36:45 -0000	1.12
@@ -1085,7 +1085,7 @@
               ("InstallGroup", -1, prefix+r"\InstallPath\InstallGroup", "",
                "Python %s" % short_version, "REGISTRY"),
               ("PythonPath", -1, prefix+r"\PythonPath", "",
-               "[TARGETDIR]Lib;[TARGETDIR]DLLs;[TARGETDIR]lib-tk", "REGISTRY"),
+               r"[TARGETDIR]Lib;[TARGETDIR]DLLs;[TARGETDIR]Lib\lib-tk", "REGISTRY"),
               ("Documentation", -1, prefix+r"\Help\Main Python Documentation", "",
                r"[TARGETDIR]Doc\Python%s%s.chm" % (major, minor), "REGISTRY"),
               ("Modules", -1, prefix+r"\Modules", "+", None, "REGISTRY"),



More information about the Python-checkins mailing list