From c0b1b8b8a777a23afb7d4a3097d5d9936c4af064 Mon Sep 17 00:00:00 2001 From: Worros Date: Wed, 10 Nov 2010 11:50:29 +0800 Subject: [PATCH] Config: Add summaryImporter element to hhc --- pyfpdb/Configuration.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pyfpdb/Configuration.py b/pyfpdb/Configuration.py index d7550b38..4e01b796 100644 --- a/pyfpdb/Configuration.py +++ b/pyfpdb/Configuration.py @@ -450,11 +450,12 @@ class Aux_window: class HHC: def __init__(self, node): - self.site = node.getAttribute("site") - self.converter = node.getAttribute("converter") + self.site = node.getAttribute("site") + self.converter = node.getAttribute("converter") + self.summaryImporter = node.getAttribute("summaryImporter") def __str__(self): - return "%s:\t%s" % (self.site, self.converter) + return "%s:\tconverter: '%s' summaryImporter: '%s'" % (self.site, self.converter, self.summaryImporter) class Popup: