summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lib/Server/Structures/Bundler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Server/Structures/Bundler.py b/src/lib/Server/Structures/Bundler.py
index e26b44373..676acec48 100644
--- a/src/lib/Server/Structures/Bundler.py
+++ b/src/lib/Server/Structures/Bundler.py
@@ -34,8 +34,8 @@ class ImageFile(SingleXMLFileBacked):
class Bundle(XMLFileBacked):
'''Bundles are configuration specifications (with image/translation abstraction)'''
- def __init__(self, filename, fam):
- XMLFileBacked.__init__(self, filename, fam)
+ def __init__(self, filename):
+ XMLFileBacked.__init__(self, filename)
self.all = []
self.attributes = {}
self.systems = {}