diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2013-08-03 18:12:45 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2013-08-03 18:12:45 (GMT) |
commit | d87c3d3ea4806db4e230f3bbd9791617aef62298 (patch) | |
tree | 06b2788e87fd2b6eccf18541be3a82206ab5f21b /Tools | |
parent | e633bed44a6354dd190c7e97e28c12dead787315 (diff) | |
parent | 78fa5e38a9cb03181f4bc53d06d41e453fd7077c (diff) | |
download | cpython-d87c3d3ea4806db4e230f3bbd9791617aef62298.zip cpython-d87c3d3ea4806db4e230f3bbd9791617aef62298.tar.gz cpython-d87c3d3ea4806db4e230f3bbd9791617aef62298.tar.bz2 |
Issue #16067: Merge with 3.3
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/msi.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 3e3cef1..73f1c83 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -1415,7 +1415,10 @@ merge(msiname, "SharedCRT", "TARGETDIR", modules) # certname (from config.py) should be (a substring of) # the certificate subject, e.g. "Python Software Foundation" if certname: - os.system('signtool sign /n "%s" /t http://timestamp.verisign.com/scripts/timestamp.dll %s' % (certname, msiname)) + os.system('signtool sign /n "%s" ' + '/t http://timestamp.verisign.com/scripts/timestamp.dll ' + '/d "Python %s" ' + '%s' % (certname, full_current_version, msiname)) if pdbzip: build_pdbzip() |