[Zope-Checkins] CVS: Zope/lib/python/ZConfig - SchemaParser.py:1.1.2.18

Chris McDonough chrism@zope.com
Thu, 5 Dec 2002 23:38:36 -0500


Update of /cvs-repository/Zope/lib/python/ZConfig
In directory cvs.zope.org:/tmp/cvs-serv9223

Modified Files:
      Tag: chrism-install-branch
	SchemaParser.py 
Log Message:
Fix small repr bug.


=== Zope/lib/python/ZConfig/SchemaParser.py 1.1.2.17 => 1.1.2.18 ===
--- Zope/lib/python/ZConfig/SchemaParser.py:1.1.2.17	Thu Dec  5 22:29:37 2002
+++ Zope/lib/python/ZConfig/SchemaParser.py	Thu Dec  5 23:38:36 2002
@@ -229,7 +229,7 @@
 
     def handleSection(self, attrs):
         if self.getCurrentCdata():
-            msg = 'cannot nest section in ' + 'self._cdata_tags'
+            msg = 'cannot nest section in ' + `self._cdata_tags`
             self.doSchemaError(msg)
         if not self._stack:
             msg = ('"section" tag valid only within "schema" tag '