1
0
mirror of https://github.com/httpie/cli.git synced 2025-08-10 22:42:05 +02:00
This commit is contained in:
Jakub Roztocil
2012-09-07 12:48:59 +02:00
parent 316e3f45a9
commit 66bdbc3745
2 changed files with 6 additions and 5 deletions

View File

@@ -52,9 +52,9 @@ def get_requests_kwargs(args):
args.data = json.dumps(args.data) if args.data else None
elif args.form and not args.files:
# If sending files, `requests` will set
# the `Content-Type` for us.
base_headers['Content-Type'] = FORM
# If sending files, `requests` will set
# the `Content-Type` for us.
base_headers['Content-Type'] = FORM
credentials = None
if args.auth: