[Python-checkins] cpython: Include micro version even if it is 0.

martin.v.loewis python-checkins at python.org
Tue May 1 18:16:00 CEST 2012


http://hg.python.org/cpython/rev/8513a7fbd301
changeset:   76703:8513a7fbd301
user:        Martin v. Löwis <martin at v.loewis.de>
date:        Tue May 01 16:37:44 2012 +0200
summary:
  Include micro version even if it is 0.

files:
  Tools/msi/msi.py |  4 +---
  1 files changed, 1 insertions(+), 3 deletions(-)


diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py
--- a/Tools/msi/msi.py
+++ b/Tools/msi/msi.py
@@ -122,9 +122,7 @@
     } [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,)

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list