From: Martin v. Löwis Date: Sat, 1 Sep 2007 06:36:03 +0000 (+0000) Subject: Bug #1737210: Change Manufacturer of Windows installer to PSF. X-Git-Tag: v2.6a1~1365 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8bc77e4b33dce913a13be3ad0f3b11d4292c78ba;p=python Bug #1737210: Change Manufacturer of Windows installer to PSF. Will backport to 2.5. --- diff --git a/Misc/NEWS b/Misc/NEWS index cdde38dd45..05520aa389 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -951,6 +951,8 @@ Tools/Demos 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+. diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index a77b08096c..b68782bbef 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -194,7 +194,7 @@ def build_database(): 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