[Zope3-checkins] CVS: Zope3/src/zope/tal - talgettext.py:1.9
Barry Warsaw
barry@zope.com
Mon, 14 Apr 2003 15:38:41 -0400
Update of /cvs-repository/Zope3/src/zope/tal
In directory cvs.zope.org:/tmp/cvs-serv7098
Modified Files:
talgettext.py
Log Message:
Fix method name typo which was causing it to choke on python:
expressions.
=== Zope3/src/zope/tal/talgettext.py 1.8 => 1.9 ===
--- Zope3/src/zope/tal/talgettext.py:1.8 Thu Apr 3 16:31:40 2003
+++ Zope3/src/zope/tal/talgettext.py Mon Apr 14 15:38:40 2003
@@ -74,7 +74,7 @@
self.catalog = {}
DummyEngine.__init__(self, macros)
- def evalaluate(*args):
+ def evaluate(*args):
return '' # who cares
def evaluatePathOrVar(*args):
@@ -242,8 +242,8 @@
print 'There was an error processing', filename
traceback.print_exc()
- # Now output the keys in the engine
- # write them to a file if --output is specified; otherwise use standard out
+ # Now output the keys in the engine. Write them to a file if --output or
+ # --update was specified; otherwise use standard out.
if (outfile is None):
outfile = sys.stdout
else: