summaryrefslogtreecommitdiffstats
path: root/security.py
diff options
context:
space:
mode:
Diffstat (limited to 'security.py')
-rw-r--r--security.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/security.py b/security.py
index c78428782..bd5c9da32 100644
--- a/security.py
+++ b/security.py
@@ -72,7 +72,5 @@ class Security:
log.info("would have run %s" %(args,))
except RuntimeError, msg:
log.error ("lokkit run failed: %s" %(msg,))
- except OSError, (errno, msg):
- log.error ("lokkit run failed: %s" %(msg,))
-
-
+ except OSError as e:
+ log.error ("lokkit run failed: %s" % e.strerror)