From bd70c4d07220538daaaec6eab47ee16090e70dfd Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Sun, 3 May 2009 01:05:25 +0000 Subject: [PATCH] refactored --- geni/aggregate.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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() -- 2.43.0