summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2004-06-01 18:50:25 +0000
committerNarayan Desai <desai@mcs.anl.gov>2004-06-01 18:50:25 +0000
commite3ac1cccf7a0da81655ebc559c4b0e688155776b (patch)
tree123d2b499e5a51c8a55194d1d8ea1901bfa42bf2 /src
parent7529ebdf63cf9283b65e31289eda09356ce8d3c0 (diff)
downloadbcfg2-e3ac1cccf7a0da81655ebc559c4b0e688155776b.tar.gz
bcfg2-e3ac1cccf7a0da81655ebc559c4b0e688155776b.tar.bz2
bcfg2-e3ac1cccf7a0da81655ebc559c4b0e688155776b.zip
remove extra fam argument; it is contained in the core argument
(Logical change 1.20) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@83 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src')
-rw-r--r--src/Generator.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Generator.py b/src/Generator.py
index 19cdaa9fe..b80b1b69d 100644
--- a/src/Generator.py
+++ b/src/Generator.py
@@ -16,9 +16,8 @@ class Generator(object):
__provides__ = {}
__requires__ = []
- def __init__(self, core, datastore, fam):
+ def __init__(self, core, datastore):
self.core = core
- self.fam = fam
self.data = "%s/%s"%(datastore,self.__name__)
self.__setup__()