From 41e822ca2f66ffc14d03950687375225e896c43f Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Sat, 2 Jul 2016 12:51:35 +0200 Subject: [PATCH] Clean-up --- README.rst | 2 +- httpie/cli.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index b7a675ab..6776af0c 100644 --- a/README.rst +++ b/README.rst @@ -318,7 +318,7 @@ shortcuts for other protocols than HTTP: .. code-block:: bash - $ alias https="http --default-scheme https" + $ alias https='http --default-scheme=https' ============= diff --git a/httpie/cli.py b/httpie/cli.py index cd24a3af..0b1a1805 100644 --- a/httpie/cli.py +++ b/httpie/cli.py @@ -89,7 +89,7 @@ positional.add_argument( metavar='URL', help=""" The scheme defaults to 'http://' if the URL does not include one. - (You can override this with: --default-scheme https) + (You can override this with: --default-scheme=https) You can also use a shorthand for localhost @@ -616,7 +616,7 @@ troubleshooting.add_argument( '--default-scheme', default="http", help=""" - Default scheme to use if not specified in the URL. + The default scheme to use if not specified in the URL. """ )