mirror of
https://github.com/certbot/certbot.git
synced 2026-06-11 01:30:14 -04:00
Fixed format string incompatibility with py2.6.
This commit is contained in:
parent
6d9edda822
commit
ddca02cb7b
1 changed files with 1 additions and 1 deletions
|
|
@ -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))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue