diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2004-09-19 18:36:45 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2004-09-19 18:36:45 (GMT) |
commit | f13337dd387d323a875f0d45a95c5974066cc225 (patch) | |
tree | b75ce729633a60cb8f89ddeee1d06e6c855fecd2 /Tools/msi | |
parent | 052d0cd291ca0f447fe7c8bf5ad30cbb1ad8de8f (diff) | |
download | cpython-f13337dd387d323a875f0d45a95c5974066cc225.zip cpython-f13337dd387d323a875f0d45a95c5974066cc225.tar.gz cpython-f13337dd387d323a875f0d45a95c5974066cc225.tar.bz2 |
Fix lib-tk PythonPath.
Diffstat (limited to 'Tools/msi')
-rw-r--r-- | Tools/msi/msi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index fa2a9fc..cda7bb6 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -1085,7 +1085,7 @@ def add_registry(db): ("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"), |