[Zope3-checkins] CVS: Zope3/src/ZConfig - loader.py:1.25
Fred L. Drake, Jr.
fred at zope.com
Tue Oct 7 09:55:12 EDT 2003
Update of /cvs-repository/Zope3/src/ZConfig
In directory cvs.zope.org:/tmp/cvs-serv17434
Modified Files:
loader.py
Log Message:
fix typos in exception name
=== Zope3/src/ZConfig/loader.py 1.24 => 1.25 ===
--- Zope3/src/ZConfig/loader.py:1.24 Fri Oct 3 17:43:59 2003
+++ Zope3/src/ZConfig/loader.py Tue Oct 7 09:55:11 2003
@@ -84,7 +84,7 @@
# utilities
def loadResource(self, resource):
- raise NotImpementedError(
+ raise NotImplementedError(
"BaseLoader.loadResource() must be overridden by a subclass")
def openResource(self, url):
@@ -191,7 +191,7 @@
def startSection(self, parent, type, name, delegatename):
if delegatename:
- raise NotImpementedError(
+ raise NotImplementedError(
"section delegation is not yet supported")
t = self.schema.gettype(type)
if t.isabstract():
More information about the Zope3-Checkins
mailing list