1
0
mirror of https://github.com/httpie/cli.git synced 2025-11-29 22:58:15 +02:00

--certkey is now --cert-key

This commit is contained in:
Jakub Roztocil
2015-01-23 23:54:27 +01:00
parent d3d78afb6a
commit df07927843
3 changed files with 14 additions and 13 deletions

View File

@@ -98,8 +98,8 @@ def get_requests_kwargs(args, base_headers=None):
cert = None
if args.cert:
cert = args.cert
if args.certkey:
cert = cert, args.certkey
if args.cert_key:
cert = cert, args.cert_key
kwargs = {
'stream': True,