handle different rc format
This commit is contained in:
parent
fb23463139
commit
0805b28fd2
|
@ -119,7 +119,10 @@ docfile = ""
|
|||
if micro:
|
||||
docfile = str(micro)
|
||||
if level < 0xf:
|
||||
docfile = '%x%s' % (level, serial)
|
||||
if level == 0xC:
|
||||
docfile = "rc%s" % (serial,)
|
||||
else:
|
||||
docfile = '%x%s' % (level, serial)
|
||||
docfile = 'python%s%s%s.chm' % (major, minor, docfile)
|
||||
|
||||
# Build the mingw import library, libpythonXY.a
|
||||
|
|
Loading…
Reference in New Issue