diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2012-05-01 14:37:44 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2012-05-01 14:37:44 (GMT) |
commit | bd31db6f79373ccacd95ae47dbe63850a175ee8f (patch) | |
tree | 399ccbf572ad0a4da0d8d065d574a23cbdb4ecd7 /Tools/msi | |
parent | 7f9d181d5666f4f3096fa8f3591e37d97a4fa569 (diff) | |
download | cpython-bd31db6f79373ccacd95ae47dbe63850a175ee8f.zip cpython-bd31db6f79373ccacd95ae47dbe63850a175ee8f.tar.gz cpython-bd31db6f79373ccacd95ae47dbe63850a175ee8f.tar.bz2 |
Include micro version even if it is 0.
Diffstat (limited to 'Tools/msi')
-rw-r--r-- | Tools/msi/msi.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index ce67978..695a103 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -122,9 +122,7 @@ pythondll_uuid = { } [major+minor] # Compute the name that Sphinx gives to the docfile -docfile = "" -if int(micro): - docfile = micro +docfile = micro if level < 0xf: if level == 0xC: docfile += "rc%s" % (serial,) |