diff options
| -rwxr-xr-x | EasyInstall.txt | 4 | ||||
| -rwxr-xr-x | setuptools/command/easy_install.py | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/EasyInstall.txt b/EasyInstall.txt index 0b69099e..2c0a6e11 100755 --- a/EasyInstall.txt +++ b/EasyInstall.txt @@ -1194,6 +1194,10 @@ displayed MD5 info (broken onto two lines for readability):: Release Notes/Change History ============================ +0.6c4 + * Fixed not recogninzing ``win32.exe`` installers that included a custom + bitmap. + 0.6c3 * You once again use "python -m easy_install" with Python 2.4 and above. diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 288ca1de..147dfc43 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -1249,7 +1249,7 @@ def extract_wininst_cfg(dist_filename): if tag not in (0x1234567A, 0x1234567B): return None # not a valid tag - f.seek(prepended-(12+cfglen+bmlen)) + f.seek(prepended-(12+cfglen)) cfg = ConfigParser.RawConfigParser({'version':'','target_version':''}) try: cfg.readfp(StringIO.StringIO(f.read(cfglen).split(chr(0),1)[0])) |
