summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Connon <richard@connon.me.uk>2014-02-04 16:07:54 +0000
committerRichard Connon <richard@connon.me.uk>2014-02-04 16:07:54 +0000
commit310ec389a7542b8f7aeb807c6ed71ae7a82515d0 (patch)
tree76331a7fb531928ae401c88d19b270b86848edcd
parentd208eed80e048ea2081165c7aaaa92c558c38b25 (diff)
downloadbcfg2-310ec389a7542b8f7aeb807c6ed71ae7a82515d0.tar.gz
bcfg2-310ec389a7542b8f7aeb807c6ed71ae7a82515d0.tar.bz2
bcfg2-310ec389a7542b8f7aeb807c6ed71ae7a82515d0.zip
Fixed continue not in a loop error in previous
-rw-r--r--src/lib/Bcfg2/Client/Tools/POSIX/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Client/Tools/POSIX/base.py b/src/lib/Bcfg2/Client/Tools/POSIX/base.py
index 4fb3c7b34..4089e9f22 100644
--- a/src/lib/Bcfg2/Client/Tools/POSIX/base.py
+++ b/src/lib/Bcfg2/Client/Tools/POSIX/base.py
@@ -664,7 +664,7 @@ class POSIXTool(Bcfg2.Client.Tools.Tool):
else:
self.logger.debug("POSIX: Unknown ACL scope %s on %s" %
(scope, path))
- continue
+ return
if scope != posix1e.ACL_OTHER:
aclentry.set(aclentry.get("scope"), qual)