diff --git a/evennia/server/portal/portal.py b/evennia/server/portal/portal.py index 5864134b46..df6ad016c5 100644 --- a/evennia/server/portal/portal.py +++ b/evennia/server/portal/portal.py @@ -394,13 +394,12 @@ if WEBSERVER_ENABLED: if WEB_PLUGINS_MODULE: try: web_root = WEB_PLUGINS_MODULE.at_webproxy_root_creation(web_root) - except Exception as e: # Legacy user has not added an at_webproxy_root_creation function in existing web plugins file + except Exception as e: # Legacy user has not added an at_webproxy_root_creation function in existing web plugins file INFO_DICT["errors"] = ( "WARNING: WEB_PLUGINS_MODULE is enabled but at_webproxy_root_creation() not found - " "copy 'evennia/game_template/server/conf/web_plugins.py to mygame/server/conf." ) - proxy_service = internet.TCPServer(proxyport, web_root, interface=interface) proxy_service.setName("EvenniaWebProxy%s:%s" % (ifacestr, proxyport)) PORTAL.services.addService(proxy_service)