summaryrefslogtreecommitdiffstats
path: root/pyload/manager/thread
diff options
context:
space:
mode:
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})