[Zope3-checkins] CVS: Zope3/lib/python/Zope/Configuration - xmlconfig.py:1.8.6.3
Jim Fulton
jim@zope.com
Mon, 21 Oct 2002 09:17:28 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/Configuration
In directory cvs.zope.org:/tmp/cvs-serv26783
Modified Files:
Tag: Zope3-Bangalore-TTW-Branch
xmlconfig.py
Log Message:
Changed another error message to be emacs compile-mode friendly.
=== Zope3/lib/python/Zope/Configuration/xmlconfig.py 1.8.6.2 => 1.8.6.3 ===
--- Zope3/lib/python/Zope/Configuration/xmlconfig.py:1.8.6.2 Mon Oct 21 08:50:54 2002
+++ Zope3/lib/python/Zope/Configuration/xmlconfig.py Mon Oct 21 09:17:27 2002
@@ -39,7 +39,7 @@
if etype is None:
if not isinstance(mess, StringType):
try:
- mess = "\n%s: %s" % (mess.__class__.__name__, mess)
+ mess = "\n%s:\n %s" % (mess.__class__.__name__, mess)
except AttributeError:
mess = str(mess)
else: