diff options
author | Rob Austein <sra@hactrn.net> | 2009-07-11 04:34:55 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-07-11 04:34:55 +0000 |
commit | 2b68c6f5cd1c6c0fac27fad4942ba82130370713 (patch) | |
tree | b362c3e31aac9a1ce2e67966ec03ccf880d67807 /myrpki/myrpki.py | |
parent | 2f5b4e144fb2e8162d2c100a40c24b5b78f71a89 (diff) |
Cleanup
svn path=/myrpki/Makefile; revision=2608
Diffstat (limited to 'myrpki/myrpki.py')
-rw-r--r-- | myrpki/myrpki.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/myrpki/myrpki.py b/myrpki/myrpki.py index 47980161..724a4c52 100644 --- a/myrpki/myrpki.py +++ b/myrpki/myrpki.py @@ -311,7 +311,8 @@ class CA(object): return None if not os.path.exists(cert): - raise RuntimeError, "PEM file %r does not exist" % (cert,) + print "Certificate %s doesn't exist, skipping" % cert + return None # Extract public key and subject name from PEM file and hash it so # we can use the result as a tag for cross-certifying this cert. |