summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Core.py
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2005-08-02 21:24:15 +0000
committerNarayan Desai <desai@mcs.anl.gov>2005-08-02 21:24:15 +0000
commitd23c8e1cae56490e2d41587703642ad80e471da0 (patch)
treef13c283f4aad5b97bac5b76ef9b40f1ee50a45a0 /src/lib/Server/Core.py
parenta40707e2c15b1d206b98f9ea54b0314682d65ed0 (diff)
downloadbcfg2-d23c8e1cae56490e2d41587703642ad80e471da0.tar.gz
bcfg2-d23c8e1cae56490e2d41587703642ad80e471da0.tar.bz2
bcfg2-d23c8e1cae56490e2d41587703642ad80e471da0.zip
fix Permissions
(Logical change 1.277) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1116 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Server/Core.py')
-rw-r--r--src/lib/Server/Core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Server/Core.py b/src/lib/Server/Core.py
index 77c2deffc..d02847794 100644
--- a/src/lib/Server/Core.py
+++ b/src/lib/Server/Core.py
@@ -160,7 +160,7 @@ class Core(object):
def BindStructure(self, structure, metadata):
'''Bind a complete structure'''
- for entry in [child for child in structure.getchildren() if child.tag not in ['SymLink', 'Directory', 'Permission', 'PostInstall']]:
+ for entry in [child for child in structure.getchildren() if child.tag not in ['SymLink', 'Directory', 'Permissions', 'PostInstall']]:
try:
self.Bind(entry, metadata)
except GeneratorError: