From fe2cb5912ef2318542ff2667c216263853cc4687 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Sat, 1 Sep 2007 06:36:38 +0000 Subject: [PATCH] Bug #1737210: Change Manufacturer of Windows installer to PSF. --- Misc/NEWS | 2 ++ Tools/msi/msi.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Misc/NEWS b/Misc/NEWS index 59378ca014..9b9d73f7a9 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -115,6 +115,8 @@ Documentation 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 893bca92e3..1c8ca6dcf2 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -193,7 +193,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 -- 2.50.1