From ddca02cb7b55c680786e36c33ef8e9a5602338ff Mon Sep 17 00:00:00 2001 From: Adam Woodbeck Date: Thu, 27 Nov 2014 09:13:01 -0500 Subject: [PATCH] Fixed format string incompatibility with py2.6. --- letsencrypt/scripts/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt/scripts/main.py b/letsencrypt/scripts/main.py index b048f0212..8bac91090 100755 --- a/letsencrypt/scripts/main.py +++ b/letsencrypt/scripts/main.py @@ -65,7 +65,7 @@ def main(): # Enforce '--privkey' is set along with '--csr'. if args.csr and not args.privkey: - parser.error("private key file (--privkey) must be specified along{} " + parser.error("private key file (--privkey) must be specified along{0} " "with the certificate signing request file (--csr)" .format(os.linesep))