diff options
author | Rob Austein <sra@hactrn.net> | 2009-04-29 04:07:41 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-04-29 04:07:41 +0000 |
commit | 55769ccf0d1230698646ab5afa331e7617505f4f (patch) | |
tree | 126f9e21c2e4dd8dfbdc6c266f18d5c4d6004fa3 /rpkid/irbe-setup.py | |
parent | 4762069728c3874b8a240c5c99c87f935051fd5a (diff) |
More lint
svn path=/rpkid/Makefile; revision=2373
Diffstat (limited to 'rpkid/irbe-setup.py')
-rw-r--r-- | rpkid/irbe-setup.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rpkid/irbe-setup.py b/rpkid/irbe-setup.py index 15b0d346..e04f4abe 100644 --- a/rpkid/irbe-setup.py +++ b/rpkid/irbe-setup.py @@ -66,10 +66,10 @@ pdu = call_rpkid(pdu) bsc_id = pdu.bsc_id print "Issue the business cert" -i,o = os.popen2(("openssl", "x509", "-req", - "-CA", "biz-certs/Bob-CA.cer", - "-CAkey", "biz-certs/Bob-CA.key", - "-CAserial", "biz-certs/Bob-CA.srl")) +i, o = os.popen2(("openssl", "x509", "-req", + "-CA", "biz-certs/Bob-CA.cer", + "-CAkey", "biz-certs/Bob-CA.key", + "-CAserial", "biz-certs/Bob-CA.srl")) i.write(pdu.pkcs10_request.get_PEM()) i.close() cer = rpki.x509.X509(PEM = o.read()) |