[Zope-Checkins] CVS: Packages/ZConfig - Common.py:1.3
Fred L. Drake, Jr.
fdrake@acm.org
Thu, 10 Oct 2002 17:43:37 -0400
Update of /cvs-repository/Packages/ZConfig
In directory cvs.zope.org:/tmp/cvs-serv23413
Modified Files:
Common.py
Log Message:
Fix up a couple of exception messages.
=== Packages/ZConfig/Common.py 1.2 => 1.3 ===
--- Packages/ZConfig/Common.py:1.2 Thu Oct 10 17:38:03 2002
+++ Packages/ZConfig/Common.py Thu Oct 10 17:43:37 2002
@@ -24,7 +24,7 @@
def __init__(self, type, name=None):
self.type = type
self.name = name
- details = 'Missing section, type: %s' % type
+ details = 'Missing section (type: %s' % type
if name is not None:
details += ', name: %s' % name
ConfigurationError.__init__(self, details + ')')
@@ -34,7 +34,7 @@
def __init__(self, type, name=None):
self.type = type
self.name = name
- details = 'Conflicting sections, (type: %s' % type
+ details = 'Conflicting sections (type: %s' % type
if name is not None:
details += ', name: %s' % name
ConfigurationError.__init__(self, details + ')')