Commit 0805b28f authored by Benjamin Peterson's avatar Benjamin Peterson

handle different rc format

parent fb234631
......@@ -119,6 +119,9 @@ docfile = ""
if micro:
docfile = str(micro)
if level < 0xf:
if level == 0xC:
docfile = "rc%s" % (serial,)
else:
docfile = '%x%s' % (level, serial)
docfile = 'python%s%s%s.chm' % (major, minor, docfile)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment