From: Martin v. Löwis Date: Tue, 1 May 2012 14:37:44 +0000 (+0200) Subject: Include micro version even if it is 0. X-Git-Tag: v3.3.0a4~319^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bd31db6f79373ccacd95ae47dbe63850a175ee8f;p=thirdparty%2FPython%2Fcpython.git Include micro version even if it is 0. --- diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index ce67978f505b..695a103380d1 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,)