Skip to content
Prev Previous commit
Next Next commit
[LIB-813] correct flake8 issues;
  • Loading branch information
opalczynski committed Jul 21, 2016
commit 6fc4c8fab6b63061f9c739a02ca8aac0adccd350
2 changes: 1 addition & 1 deletion syncano/models/hosting.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def upload_file(self, path, file):
headers = params['headers']
headers.pop('content-type')
response = connection.session.post(connection.host + files_path, headers=headers,
data=data, files=[('file', file)])
data=data, files=[('file', file)])
if response.status_code != 201:
logger.error(response.text)
return
Expand Down