This commit is contained in:
Jakub Roztocil 2016-07-02 12:51:35 +02:00
parent 1124d68946
commit 41e822ca2f
2 changed files with 3 additions and 3 deletions

View File

@ -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'
=============

View File

@ -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.
"""
)