Kaydet (Commit) db7b5704 authored tarafından Martin v. Löwis's avatar Martin v. Löwis

Merged revisions 73606 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r73606 | martin.v.loewis | 2009-06-28 14:24:23 +0200 (So, 28 Jun 2009) | 2 lines

  Fix types in logic to compute help file name.
........
üst 892a37af
...@@ -117,13 +117,13 @@ pythondll_uuid = { ...@@ -117,13 +117,13 @@ pythondll_uuid = {
# Compute the name that Sphinx gives to the docfile # Compute the name that Sphinx gives to the docfile
docfile = "" docfile = ""
if micro: if int(micro):
docfile = str(micro) docfile = micro
if level < 0xf: if level < 0xf:
if level == 0xC: if level == 0xC:
docfile = "rc%s" % (serial,) docfile += "rc%s" % (serial,)
else: else:
docfile = '%x%s' % (level, serial) docfile += '%x%s' % (level, serial)
docfile = 'python%s%s%s.chm' % (major, minor, docfile) docfile = 'python%s%s%s.chm' % (major, minor, docfile)
# Build the mingw import library, libpythonXY.a # Build the mingw import library, libpythonXY.a
......
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