summaryrefslogtreecommitdiffstats
path: root/func/certmaster.py
diff options
context:
space:
mode:
authorJames Bowes <jbowes@redhat.com>2007-09-26 17:56:35 -0400
committerJames Bowes <jbowes@redhat.com>2007-09-26 17:57:11 -0400
commit7bc62f66a940275f3ba83f0fca5ea2cd3f4354c7 (patch)
tree66a4d40a483da0482d3aa691c4cd094e11f636e2 /func/certmaster.py
parent14d2c2cfc8962ab5d6ee3bf97dc3f40ba0790714 (diff)
downloadthird_party-func-7bc62f66a940275f3ba83f0fca5ea2cd3f4354c7.tar.gz
third_party-func-7bc62f66a940275f3ba83f0fca5ea2cd3f4354c7.tar.xz
third_party-func-7bc62f66a940275f3ba83f0fca5ea2cd3f4354c7.zip
Fix OsError tyop
Diffstat (limited to 'func/certmaster.py')
-rwxr-xr-xfunc/certmaster.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/func/certmaster.py b/func/certmaster.py
index 58840bb..3ed6d58 100755
--- a/func/certmaster.py
+++ b/func/certmaster.py
@@ -75,7 +75,7 @@ class CertMaster(object):
# fixme - should we creating these separately?
if not os.path.exists(self.ca_key_file) and not os.path.exists(self.ca_cert_file):
func.certs.create_ca(ca_key_file=self.ca_key_file, ca_cert_file=self.ca_cert_file)
- except (IOError, OsError), e:
+ except (IOError, OSError), e:
print 'Cannot make certmaster certificate authority keys/certs, aborting: %s' % e
sys.exit(1)