summaryrefslogtreecommitdiffstats
path: root/func
diff options
context:
space:
mode:
Diffstat (limited to 'func')
-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)