Author: damoxc
Revision: 5038
Log:
update the "serving on" string
Diff:
Modified: trunk/deluge/ui/web/server.py
===================================================================
--- trunk/deluge/ui/web/server.py 2009-04-08 08:22:02 UTC (rev 5037)
+++ trunk/deluge/ui/web/server.py 2009-04-08 08:37:41 UTC (rev 5038)
@@ -252,11 +252,8 @@
def start(self):
print "%s %s." % (_("Starting server in PID"), os.getpid())
reactor.listenTCP(self.port, self.site)
- print "%(serve)s 0.0.0.0:%(port)s %(view)s http://127.0.0.1:%(port)s"
% {
- "port": self.port,
- "serve": _("serving on"),
- "view": _("view at")
- }
+ print "serving on %s:%s view at http://127.0.0.1:%s" % ("0.0.0.0",
+ self.port, self.port)
reactor.run()
def shutdown(self, *args):
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"deluge-commit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/deluge-commit?hl=en
-~----------~----~----~----~------~----~------~--~---