[Python-checkins] r57860 - in python/branches/release25-maint: Misc/NEWS Tools/msi/msi.py

martin.v.loewis python-checkins at python.org
Sat Sep 1 08:36:49 CEST 2007


Author: martin.v.loewis
Date: Sat Sep  1 08:36:38 2007
New Revision: 57860

Modified:
   python/branches/release25-maint/Misc/NEWS
   python/branches/release25-maint/Tools/msi/msi.py
Log:
Bug #1737210: Change Manufacturer of Windows installer to PSF.


Modified: python/branches/release25-maint/Misc/NEWS
==============================================================================
--- python/branches/release25-maint/Misc/NEWS	(original)
+++ python/branches/release25-maint/Misc/NEWS	Sat Sep  1 08:36:38 2007
@@ -115,6 +115,8 @@
 Build
 -----
 
+- Bug #1737210: Change Manufacturer of Windows installer to PSF.
+
 - Bug #1746880: Correctly install DLLs into system32 folder on Win64.
 
 - Define _BSD_SOURCE, to get access to POSIX extensions on OpenBSD 4.1+.

Modified: python/branches/release25-maint/Tools/msi/msi.py
==============================================================================
--- python/branches/release25-maint/Tools/msi/msi.py	(original)
+++ python/branches/release25-maint/Tools/msi/msi.py	Sat Sep  1 08:36:38 2007
@@ -193,7 +193,7 @@
                   schema, ProductName="Python "+full_current_version,
                   ProductCode=product_code,
                   ProductVersion=current_version,
-                  Manufacturer=u"Martin v. L\xf6wis")
+                  Manufacturer=u"Python Software Foundation")
     # The default sequencing of the RemoveExistingProducts action causes
     # removal of files that got just installed. Place it after
     # InstallInitialize, so we first uninstall everything, but still roll


More information about the Python-checkins mailing list