mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 07:12:54 -04:00
Merge pull request #79 from w0uld/fix_print_options
Resolved issue where command line arguments were not being printed due t...
This commit is contained in:
commit
6b7d3d6dd4
1 changed files with 2 additions and 2 deletions
|
|
@ -102,7 +102,7 @@ def usage():
|
|||
def print_options():
|
||||
print ("\nsudo ./letsencrypt.py "
|
||||
"(default authentication mode using pythondialog)")
|
||||
options = [("privkey= (specify key file to use to generate the "
|
||||
options = ("privkey= (specify key file to use to generate the "
|
||||
"certificate)",
|
||||
"csr= (Use a specific CSR. If this is specified, privkey "
|
||||
"must also be specified with the correct"
|
||||
|
|
@ -116,7 +116,7 @@ def print_options():
|
|||
"HTTPS for the newly authenticated vhost)",
|
||||
"no-redirect (Skip the HTTPS redirect question, "
|
||||
"allowing both HTTP and HTTPS)",
|
||||
"agree-eula (Skip the end user agreement screen))")]
|
||||
"agree-eula (Skip the end user agreement screen))")
|
||||
for o in options:
|
||||
print " --%s" % o
|
||||
sys.exit(0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue