[i18n] nothing to translate here stable
authorSylvain Thénault <sylvain.thenault@logilab.fr>
Fri, 26 Feb 2010 08:46:27 +0100
branchstable
changeset 4713 785299dfc2c0
parent 4712 8dd774c9c3bb
child 4714 fccda6dd91bf
[i18n] nothing to translate here
web/views/management.py
--- a/web/views/management.py	Fri Feb 26 08:46:03 2010 +0100
+++ b/web/views/management.py	Fri Feb 26 08:46:27 2010 +0100
@@ -352,9 +352,8 @@
     __select__ = none_rset() & match_user_groups('users', 'managers')
 
     def call(self):
-        _ = self._cw._
         stats = self._cw.vreg.config.repository(None).stats()
         results = []
         for element in stats:
-            results.append('%s %s' % (element, stats[element]))
-        self.w(u"%s" % _('\n'.join(results)))
+            results.append(u'%s %s' % (element, stats[element]))
+        self.w(u'\n'.join(results))