mirror of https://github.com/python/cpython
Fix generation of CHM name for release candidates.
This commit is contained in:
parent
05d644a41a
commit
2a0274ddbc
|
@ -118,7 +118,7 @@ docfile = ""
|
|||
if micro:
|
||||
docfile = str(micro)
|
||||
if level < 0xf:
|
||||
docfile = '%x%s' % (level, serial)
|
||||
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