Browse Source

Remove unnecessary character

shortcutme 5 years ago
parent
commit
af0b563036
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/Stats/StatsPlugin.py

+ 1 - 1
plugins/Stats/StatsPlugin.py

@@ -163,7 +163,7 @@ class UiRequestPlugin(object):
             yield "</table>"
 
         # Tor hidden services
-        yield b"<br><br><b>Tor hidden services (status: %s):</b><br>" % main.file_server.tor_manager.status.encode("utf8")
+        yield "<br><br><b>Tor hidden services (status: %s):</b><br>" % main.file_server.tor_manager.status.encode("utf8")
         for site_address, onion in main.file_server.tor_manager.site_onions.items():
             yield "- %-34s: %s<br>" % (site_address, onion.encode("utf8"))