diff options
author | Rob Austein <sra@hactrn.net> | 2007-10-16 22:51:18 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-10-16 22:51:18 +0000 |
commit | 6ce933a32fda56860bc9ca05d2553255a820a635 (patch) | |
tree | 3631e4b9677cf67fd4e8189fa9d0bf7233f9b45e /scripts/rpki/pkcs10.py | |
parent | bdf73f5360327b4e70b5e9bf81f7853b35a41463 (diff) |
Formatting
svn path=/scripts/rpki/cms.py; revision=1163
Diffstat (limited to 'scripts/rpki/pkcs10.py')
-rw-r--r-- | scripts/rpki/pkcs10.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/rpki/pkcs10.py b/scripts/rpki/pkcs10.py index 25326c20..7f8ee17d 100644 --- a/scripts/rpki/pkcs10.py +++ b/scripts/rpki/pkcs10.py @@ -35,7 +35,8 @@ def make_request(keypair): f.write(req_fmt % commonName) f.close() - i,o = os.popen2(["openssl", "req", "-config", config_filename, "-new", "-key", "/dev/stdin", "-outform", "DER"]) + i,o = os.popen2(["openssl", "req", "-config", config_filename, "-new", + "-key", "/dev/stdin", "-outform", "DER"]) i.write(keypair.get_PEM()) i.close() pkcs10 = rpki.x509.PKCS10(DER = o.read()) |