summaryrefslogtreecommitdiffstats
path: root/cobbler/acls.py
diff options
context:
space:
mode:
Diffstat (limited to 'cobbler/acls.py')
-rw-r--r--cobbler/acls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cobbler/acls.py b/cobbler/acls.py
index 8e7ecea9..e797f2f7 100644
--- a/cobbler/acls.py
+++ b/cobbler/acls.py
@@ -40,7 +40,7 @@ class AclEngine:
yfh = open("/etc/cobbler/acls.conf")
data = yfh.read()
yfh.close()
- self.data = yaml.load(data).next()
+ self.data = yaml.load(data)
self.verbose = verbose
def __match(self, needle, haystack):