This commit is contained in:
caryoscelus 2024-02-09 15:55:08 +00:00
parent 2520024f56
commit ca5d573908
No known key found for this signature in database
GPG key ID: 254EDDB85B66CB1F

View file

@ -162,7 +162,7 @@ class UiServer:
return ui_request.route(path)
except Exception as err:
logging.debug(f"UiRequest @ site error: {Debug.formatException(err)}")
return ui_request.error500('Error while trying to server site data')
return ui_request.error500('Error while trying to serve site data')
def startSiteServer(self):
self.site_server = WSGIServer((self.ip, self.site_port), self.handleSiteRequest, log=self.log)