diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-12-08 11:15:35 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-12-08 11:15:35 (GMT) |
commit | b5120ceae2b323c0493f26136e820e8f5a5a5c45 (patch) | |
tree | 759d9d2ccd9fa219c5a11a22fec7582ceecde815 /Tools | |
parent | 17fa44f6174059c576594d7a6acdce3012be1943 (diff) | |
download | cpython-b5120ceae2b323c0493f26136e820e8f5a5a5c45.zip cpython-b5120ceae2b323c0493f26136e820e8f5a5a5c45.tar.gz cpython-b5120ceae2b323c0493f26136e820e8f5a5a5c45.tar.bz2 |
Consider micro version for name of CHM file.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/msi.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 2d88e42..4f750e6 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) |