diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-10-01 11:22:32 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-10-01 11:22:32 (GMT) |
commit | fe21884a6014bec830fe8551a8bd8f21e3eb5936 (patch) | |
tree | d45545c001889e454f1b5b25b9a85a7ded0e6491 /Tools/msi/msi.py | |
parent | 58fb905ad08ef8dcea8c636755d0441f33c2b655 (diff) | |
download | cpython-fe21884a6014bec830fe8551a8bd8f21e3eb5936.zip cpython-fe21884a6014bec830fe8551a8bd8f21e3eb5936.tar.gz cpython-fe21884a6014bec830fe8551a8bd8f21e3eb5936.tar.bz2 |
Merged revisions 66710 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r66710 | martin.v.loewis | 2008-10-01 13:19:50 +0200 (Mi, 01 Okt 2008) | 2 lines
Bug #3989: Package the 2to3 script (as 2to3.py) in the Windows
installer.
........
Diffstat (limited to 'Tools/msi/msi.py')
-rw-r--r-- | Tools/msi/msi.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index f9aa30a..8d63f11 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -1121,6 +1121,7 @@ def add_files(db): if os.path.exists(os.path.join(lib.absolute, "README")): lib.add_file("README.txt", src="README") if f == 'Scripts': + lib.add_file("2to3.py", src="2to3") if have_tcl: lib.start_component("pydocgui.pyw", tcltk, keyfile="pydocgui.pyw") lib.add_file("pydocgui.pyw") |