[haizea-commit] r820 - branches/1.1/src/haizea/core
haizea-commit at mailman.cs.uchicago.edu
haizea-commit at mailman.cs.uchicago.edu
Thu Jul 8 16:53:27 CDT 2010
Author: borja
Date: 2010-07-08 16:53:26 -0500 (Thu, 08 Jul 2010)
New Revision: 820
Modified:
branches/1.1/src/haizea/core/configfile.py
Log:
Fixed wrong handling of attributes in multiconfig files
Modified: branches/1.1/src/haizea/core/configfile.py
===================================================================
--- branches/1.1/src/haizea/core/configfile.py 2010-07-04 19:08:11 UTC (rev 819)
+++ branches/1.1/src/haizea/core/configfile.py 2010-07-08 21:53:26 UTC (rev 820)
@@ -1006,7 +1006,7 @@
attrs_str = ",".join(["%s=%s" % (k,v) for (k,v) in attrs.items()])
if profileconfig.has_option("accounting", "attributes"):
- attrs_str += ",%s" % profileconfig.get("general", "attributes")
+ attrs_str += ",%s" % profileconfig.get("accounting", "attributes")
profileconfig.set("accounting", "attributes", attrs_str)
try:
More information about the Haizea-commit
mailing list