Fixed format string incompatibility with py2.6.

This commit is contained in:
Adam Woodbeck 2014-11-27 09:13:01 -05:00
parent 6d9edda822
commit ddca02cb7b

View file

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