diff roundup/scripts/roundup_server.py @ 2566:dd2b9f5a104c

don't translate strings that never need translation
author Alexander Smishlajev <a1s@users.sourceforge.net>
date Tue, 13 Jul 2004 10:24:19 +0000
parents 6eda7612676d
children 5a8d9465827e
line wrap: on
line diff
--- a/roundup/scripts/roundup_server.py	Tue Jul 13 10:19:13 2004 +0000
+++ b/roundup/scripts/roundup_server.py	Tue Jul 13 10:24:19 2004 +0000
@@ -17,7 +17,7 @@
 
 """Command-line script that runs a server over roundup.cgi.client.
 
-$Id: roundup_server.py,v 1.54 2004-07-04 12:52:06 a1s Exp $
+$Id: roundup_server.py,v 1.55 2004-07-13 10:24:19 a1s Exp $
 """
 __docformat__ = 'restructuredtext'
 
@@ -132,10 +132,10 @@
         keys = self.TRACKER_HOMES.keys()
         keys.sort()
         for tracker in keys:
-            w(_('<li><a href="%(tracker_url)s/index">%(tracker_name)s</a>\n')%{
+            w('<li><a href="%(tracker_url)s/index">%(tracker_name)s</a>\n'%{
                 'tracker_url': urllib.quote(tracker),
                 'tracker_name': cgi.escape(tracker)})
-        w(_('</ol></body></html>'))
+        w('</ol></body></html>')
 
     def inner_run_cgi(self):
         ''' This is the inner part of the CGI handling

Roundup Issue Tracker: http://roundup-tracker.org/