[Zope3-checkins] CVS: Zope3/lib/python/Zope/Configuration - meta.py:1.8
R. David Murray
bitz@bitdance.com
Tue, 17 Sep 2002 23:49:53 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/Configuration
In directory cvs.zope.org:/tmp/cvs-serv26367
Modified Files:
meta.py
Log Message:
Eliminate unneeded local variable.
=== Zope3/lib/python/Zope/Configuration/meta.py 1.7 => 1.8 ===
--- Zope3/lib/python/Zope/Configuration/meta.py:1.7 Tue Sep 17 18:44:04 2002
+++ Zope3/lib/python/Zope/Configuration/meta.py Tue Sep 17 23:49:52 2002
@@ -158,11 +158,10 @@
base, subdirs = handlertuple
try:
- subtuple = subdirs[_name]
+ subsubs, handler_method = subdirs[_name]
except KeyError:
raise InvalidDirective(_name)
- subsubs, handler_method = subtuple
callable = getattr(base, handler_method)
return _exe(callable, subsubs, _context, kw)