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 676acec48..acd2790ab 100644
--- a/src/lib/Server/Structures/Bundler.py
+++ b/src/lib/Server/Structures/Bundler.py
@@ -13,8 +13,8 @@ from xml.parsers.expat import ExpatError
class ImageFile(SingleXMLFileBacked):
'''This file contains image -> system mappings'''
def __init__(self, filename, fam):
- SingleXMLFileBacked.__init__(self, filename, fam)
self.images = {}
+ SingleXMLFileBacked.__init__(self, filename, fam)
def Index(self):
'''Build data structures out of the data'''
@@ -35,10 +35,10 @@ class Bundle(XMLFileBacked):
'''Bundles are configuration specifications (with image/translation abstraction)'''
def __init__(self, filename):
- XMLFileBacked.__init__(self, filename)
self.all = []
self.attributes = {}
self.systems = {}
+ XMLFileBacked.__init__(self, filename)
def Index(self):
'''Build data structures from the source data'''