From b5120ceae2b323c0493f26136e820e8f5a5a5c45 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Mon, 8 Dec 2008 11:15:35 +0000 Subject: [PATCH] Consider micro version for name of CHM file. --- Tools/msi/msi.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 2d88e42c14..4f750e67a4 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) -- 2.50.1