summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2009-03-10 15:56:09 +0000
committerNarayan Desai <desai@mcs.anl.gov>2009-03-10 15:56:09 +0000
commit9c9bcdd78d37d89b1da9e99dbcb477fce2afb78c (patch)
treeb9e32a8cff6488c4e84d022e444ed007c8d85614
parentda2d1e776fcadd33e0936918c8727b2bd7dfe647 (diff)
downloadbcfg2-9c9bcdd78d37d89b1da9e99dbcb477fce2afb78c.tar.gz
bcfg2-9c9bcdd78d37d89b1da9e99dbcb477fce2afb78c.tar.bz2
bcfg2-9c9bcdd78d37d89b1da9e99dbcb477fce2afb78c.zip
Update for properties switch
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5117 ce84e21b-d406-0410-9b95-82705330c041
-rw-r--r--src/lib/Server/Plugins/Editor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Server/Plugins/Editor.py b/src/lib/Server/Plugins/Editor.py
index 6e2204e42..088c8a26e 100644
--- a/src/lib/Server/Plugins/Editor.py
+++ b/src/lib/Server/Plugins/Editor.py
@@ -25,9 +25,9 @@ class EditDirectives(Bcfg2.Server.Plugin.SpecificData):
return temp
class EditEntrySet(Bcfg2.Server.Plugin.EntrySet):
- def __init__(self, basename, path, props, entry_type, encoding):
+ def __init__(self, basename, path, entry_type, encoding):
self.ignore = re.compile("^(\.#.*|.*~|\\..*\\.(tmp|sw[px])|%s\.H_.*)$" %path.split('/')[-1])
- Bcfg2.Server.Plugin.EntrySet.__init__(self, basename, path, props, entry_type, encoding)
+ Bcfg2.Server.Plugin.EntrySet.__init__(self, basename, path, entry_type, encoding)
self.inputs = dict()
def bind_entry(self, entry, metadata):