[cleanup] drop accidentally commited print
authorSylvain Thénault <sylvain.thenault@logilab.fr>
Mon, 25 Oct 2010 11:02:14 +0200
changeset 6619 ed5b452506af
parent 6617 120c7ea6e1fa
child 6620 43ba6cfcf75c
[cleanup] drop accidentally commited print
web/views/basecontrollers.py
--- a/web/views/basecontrollers.py	Mon Oct 25 10:23:32 2010 +0200
+++ b/web/views/basecontrollers.py	Mon Oct 25 11:02:14 2010 +0200
@@ -464,7 +464,6 @@
     @jsonize
     def js_i18n(self, msgids):
         """returns the translation of `msgid`"""
-        print 'translate', msgids, [self._cw._(msgid) for msgid in msgids]
         return [self._cw._(msgid) for msgid in msgids]
 
     @jsonize