Skip to content
This repository was archived by the owner on Jan 7, 2021. It is now read-only.

Commit 62f318d

Browse files
committed
Another stab at the Python 3.4 bug
1 parent 94a18ce commit 62f318d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

documentcloud/MultipartPostHandler.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ def http_request(self, request):
100100
try:
101101
request.add_data(data)
102102
except AttributeError:
103-
request.data.update(data)
103+
for k, v in data.items():
104+
request.data[k] = v
104105

105106
return request
106107

0 commit comments

Comments
 (0)