From: Martin v. Löwis Date: Mon, 8 Dec 2008 11:15:35 +0000 (+0000) Subject: Consider micro version for name of CHM file. X-Git-Tag: v2.7a1~2560 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5120ceae2b323c0493f26136e820e8f5a5a5c45;p=thirdparty%2FPython%2Fcpython.git Consider micro version for name of CHM file. --- diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 2d88e42c1415..4f750e67a430 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -116,6 +116,8 @@ pythondll_uuid = { # Compute the name that Sphinx gives to the docfile docfile = "" +if micro: + docfile = str(micro) if level < 0xf: docfile = '%x%s' % (level, serial) docfile = 'python%s%s%s.chm' % (major, minor, docfile)