[Zope-Checkins] CVS: Zope3/lib/python/Zope/Configuration - xmlconfig.py:1.1.2.10
Jim Fulton
jim@zope.com
Mon, 4 Mar 2002 16:37:39 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/Configuration
In directory cvs.zope.org:/tmp/cvs-serv21831
Modified Files:
Tag: Zope-3x-branch
xmlconfig.py
Log Message:
Fixed bug in ZopeConfigurationConflictError that causes stringifying
to fail.
=== Zope3/lib/python/Zope/Configuration/xmlconfig.py 1.1.2.9 => 1.1.2.10 ===
r = ["Conflicting configuration actions"]
for dis, locs in self._conflicts.items():
- r.append('for: %s' % dis)
+ r.append('for: %s' % (dis,))
for loc in locs:
r.append(" at line %s column %s of %s" % loc)