Commit d4f6d2e9 authored by Jason R. Coombs's avatar Jason R. Coombs

Merge

parents 6e15af98 3117a6c7
...@@ -2,6 +2,12 @@ ...@@ -2,6 +2,12 @@
CHANGES CHANGES
======= =======
-----
1.1.4
-----
* Issue #77: Fix error in upload command (Python 2.4).
----- -----
1.1.3 1.1.3
----- -----
......
...@@ -122,7 +122,7 @@ class upload(Command): ...@@ -122,7 +122,7 @@ class upload(Command):
body = StringIO() body = StringIO()
for key, value in data.items(): for key, value in data.items():
# handle multiple entries for the same name # handle multiple entries for the same name
if isinstance(value, list): if not isinstance(value, list):
value = [value] value = [value]
for value in value: for value in value:
if type(value) is tuple: if type(value) is tuple:
......
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