1
0
mirror of https://github.com/httpie/cli.git synced 2025-08-10 22:42:05 +02:00

rename -ssl-cert and --ssl-key to --cert and --certkey

This commit is contained in:
Matthias Lehmann
2014-02-05 12:50:40 +01:00
parent d4363a560d
commit a3aae12d9c
2 changed files with 8 additions and 8 deletions

View File

@@ -74,10 +74,10 @@ def get_requests_kwargs(args):
credentials = auth_plugin.get_auth(args.auth.key, args.auth.value)
cert = None
if args.ssl_cert:
cert = args.ssl_cert
if args.ssl_key:
cert = (cert, args.ssl_key)
if args.cert:
cert = args.cert
if args.certkey:
cert = (cert, args.certkey)
kwargs = {
'stream': True,