Skip to content
This repository was archived by the owner on Mar 18, 2019. It is now read-only.

Commit 3080558

Browse files
committed
Resolve typo
1 parent 4eeeff1 commit 3080558

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coreapi/transports/http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def _make_http_request(url, method, headers=None, encoding=None, params=empty_pa
144144
opts['json'] = params.data
145145
elif encoding == 'multipart/form-data':
146146
opts['data'] = params.data
147-
opts['files'] = params.file
147+
opts['files'] = params.files
148148
elif encoding == 'application/x-www-form-urlencoded':
149149
opts['data'] = params.data
150150
elif encoding == 'application/octet-stream':

0 commit comments

Comments
 (0)