From 1288b4986d40c929683aba90c672bb4c3e1f3065 Mon Sep 17 00:00:00 2001 From: Adam Woodbeck Date: Tue, 25 Nov 2014 10:19:08 -0500 Subject: [PATCH] Resolved issue where command line arguments were not being printed due to a type conversion error. --- letsencrypt/scripts/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/letsencrypt/scripts/main.py b/letsencrypt/scripts/main.py index 07fa6054d..c734f1b12 100755 --- a/letsencrypt/scripts/main.py +++ b/letsencrypt/scripts/main.py @@ -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)