From: Tony Mack Date: Sun, 3 May 2009 01:05:25 +0000 (+0000) Subject: refactored X-Git-Tag: sfa-0.9-0@14641~423 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=bd70c4d07220538daaaec6eab47ee16090e70dfd;hp=95ebabe76aab54d5bae6bafe4d26e902ac1b434a;p=sfa.git refactored --- diff --git a/geni/aggregate.py b/geni/aggregate.py index 33fd3abf..add34447 100644 --- a/geni/aggregate.py +++ b/geni/aggregate.py @@ -44,7 +44,7 @@ class Aggregates(dict): connection_dict = {} for field in self.required_fields: connection_dict[field] = '' - + aggregates_dict = {'aggregates': {'aggregate': [connection_dict]}} # get possible config file locations loaded = False path = os.path.dirname(os.path.abspath(__file__)) @@ -55,13 +55,13 @@ class Aggregates(dict): for f in files: try: if os.path.isfile(f): - self.aggregate_info = XmlStorage(f, {'aggregates': {'aggregate': [connection_dict]}}) + self.aggregate_info = XmlStorage(f, aggregates_dict) loaded = True except: pass # if file is missing, just recreate it in the right place if not loaded: - self.aggregate_info = XmlStorage(file, {'aggregates': {'aggregate': [connection_dict]}}) + self.aggregate_info = XmlStorage(file, aggregates_dict) self.aggregate_info.load() self.connectAggregates()