Commit 605ef54c authored by PJ Eby's avatar PJ Eby

Don't double-upload .exe files under Python 2.5. :(

(backport from trunk)

--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4053310
parent e3c117ac
......@@ -2,7 +2,7 @@ from distutils.command.bdist_wininst import bdist_wininst as _bdist_wininst
import os
class bdist_wininst(_bdist_wininst):
if sys.version<'2.5':
def create_exe(self, arcname, fullname, bitmap=None):
_bdist_wininst.create_exe(self, arcname, fullname, bitmap)
......
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