summaryrefslogtreecommitdiffstats
path: root/pyload/manager/thread
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-04-21 13:23:53 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-04-21 13:23:53 +0200
commitc9f5bc33f978f5e12669dff0f04082a8967a0a46 (patch)
treea3c24328d8b7262199125151405b31e72b0ff5e0 /pyload/manager/thread
parentMerge branch 'pr/n10_ardi69' into 0.4.10 (diff)
downloadpyload-c9f5bc33f978f5e12669dff0f04082a8967a0a46.tar.xz
Spare code cosmetics (10)
Diffstat (limited to 'pyload/manager/thread')
-rw-r--r--pyload/manager/thread/Server.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/manager/thread/Server.py b/pyload/manager/thread/Server.py
index 97590013e..6eab58ca7 100644
--- a/pyload/manager/thread/Server.py
+++ b/pyload/manager/thread/Server.py
@@ -81,7 +81,7 @@ class WebServer(threading.Thread):
def start_builtin(self):
if self.https:
- log.warning(_("This server offers no SSL, please consider using threaded instead"))
+ log.warning(_("This server offers no SSL, please consider using `threaded` instead"))
self.core.log.info(_("Starting builtin webserver: %(host)s:%(port)d") % {"host": self.host, "port": self.port})
webinterface.run_simple(host=self.host, port=self.port)
@@ -111,7 +111,7 @@ class WebServer(threading.Thread):
def start_lightweight(self):
if self.https:
- log.warning(_("This server offers no SSL, please consider using threaded instead"))
+ log.warning(_("This server offers no SSL, please consider using `threaded` instead"))
self.core.log.info(
_("Starting lightweight webserver (bjoern): %(host)s:%(port)d") % {"host": self.host, "port": self.port})