summaryrefslogtreecommitdiffstats
path: root/security.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-09-13 17:14:57 +0000
committerJeremy Katz <katzj@redhat.com>2005-09-13 17:14:57 +0000
commit0ce8a03242350428353bda95d28f451a36a88afb (patch)
treeaf7cf76fb103ca1405068ff5cc5ee6ef43352064 /security.py
parente514df84e3cb49ab3664e15d85c21660eca06c47 (diff)
downloadanaconda-0ce8a03242350428353bda95d28f451a36a88afb.tar.gz
anaconda-0ce8a03242350428353bda95d28f451a36a88afb.tar.xz
anaconda-0ce8a03242350428353bda95d28f451a36a88afb.zip
2005-09-13 Jeremy Katz <katzj@redhat.com>
* security.py (Security.write): log formatting fixes.
Diffstat (limited to 'security.py')
-rw-r--r--security.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/security.py b/security.py
index 926bc30ed..9322be4ea 100644
--- a/security.py
+++ b/security.py
@@ -66,10 +66,10 @@ class Security:
iutil.execWithRedirect(args[0], args, root = instPath,
stdout = None, stderr = None)
else:
- log.error("would have run %s", args)
+ log.info("would have run %s" %(args,))
except RuntimeError, msg:
- log.error ("lokkit run failed: %s", msg)
+ log.error ("lokkit run failed: %s" %(msg,))
except OSError, (errno, msg):
- log.error ("lokkit run failed: %s", msg)
+ log.error ("lokkit run failed: %s" %(msg,))