[Zope-Checkins] CVS: Zope3/lib/python/Zope/I18n - Translate.py:1.3
Barry Warsaw
barry@wooz.org
Mon, 1 Jul 2002 18:50:07 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/I18n
In directory cvs.zope.org:/tmp/cvs-serv8787
Modified Files:
Translate.py
Log Message:
translate(): Fixed an obvious syntax error that the (port to) Zope2
build actually caught. This couldn't work anyway because it's
obviously a stub.
=== Zope3/lib/python/Zope/I18n/Translate.py 1.2 => 1.3 ===
service = None
- return service.translate(domain, source, mapping, context,
- target_language):
+ return service.translate(domain, source, mapping, context, target_language)