diff options
-rw-r--r-- | CHANGES.txt | 6 | ||||
-rwxr-xr-x | setuptools/command/upload.py | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 633e8d5f..634edd4e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -3,6 +3,12 @@ CHANGES ======= ----- +1.1.4 +----- + +* Issue #77: Fix error in upload command (Python 2.4). + +----- 1.1.3 ----- diff --git a/setuptools/command/upload.py b/setuptools/command/upload.py index 5476b5ec..a6eff385 100755 --- a/setuptools/command/upload.py +++ b/setuptools/command/upload.py @@ -122,7 +122,7 @@ class upload(Command): body = StringIO() for key, value in data.items(): # handle multiple entries for the same name - if isinstance(value, list): + if not isinstance(value, list): value = [value] for value in value: if type(value) is tuple: |