Discussion:
[Python-3000-checkins] r66711 - in python/branches/py3k: Tools/msi/msi.py
martin.v.loewis
2008-10-01 11:22:32 UTC
Permalink
Author: martin.v.loewis
Date: Wed Oct 1 13:22:32 2008
New Revision: 66711

Log:
Merged revisions 66710 via svnmerge from
svn+ssh://pythondev at 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.
........


Modified:
python/branches/py3k/ (props changed)
python/branches/py3k/Tools/msi/msi.py

Modified: python/branches/py3k/Tools/msi/msi.py
==============================================================================
--- python/branches/py3k/Tools/msi/msi.py (original)
+++ python/branches/py3k/Tools/msi/msi.py Wed Oct 1 13:22:32 2008
@@ -1121,6 +1121,7 @@
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")

Loading...