diff options
author | David Lehman <dlehman@redhat.com> | 2009-12-15 12:21:05 -0600 |
---|---|---|
committer | David Lehman <dlehman@redhat.com> | 2009-12-15 12:21:05 -0600 |
commit | 0c7f73efe7d3280e637a50ce3f5e29def5c39957 (patch) | |
tree | f369f8e68631d67e083669372394de5737188b5b /isys | |
parent | 310cd964f20672a1b5700fb916c058daa563e843 (diff) | |
download | anaconda-0c7f73efe7d3280e637a50ce3f5e29def5c39957.tar.gz anaconda-0c7f73efe7d3280e637a50ce3f5e29def5c39957.tar.xz anaconda-0c7f73efe7d3280e637a50ce3f5e29def5c39957.zip |
Fix typo logging failure to get default file context.
Diffstat (limited to 'isys')
-rwxr-xr-x | isys/isys.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/isys.py b/isys/isys.py index df7fb8f89..14d2a5d9d 100755 --- a/isys/isys.py +++ b/isys/isys.py @@ -603,7 +603,7 @@ def matchPathContext(fn): try: con = selinux.matchpathcon(os.path.normpath(fn), 0)[1] except OSError: - log.info("failed to get default SELinux context for %s" % f) + log.info("failed to get default SELinux context for %s" % fn) return con ## Set the SELinux file context of a file |