Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/scriptform/commit/9e75badca5ef68fa94ad92dc66b7791a7eceedd4 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Python v2.6.6 support

pull/7/head
Ferry Boender 10 years ago
parent 7ad325828d
commit 9e75badca5
  1. 2
      src/webserver.py

@ -39,7 +39,7 @@ class RequestHandler(BaseHTTPRequestHandler):
def log_message(self, fmt, *args):
"""Overrides BaseHTTPRequestHandler which logs to the console. We log
to our log file instead"""
fmt = "{} {}"
fmt = "{0} {1}"
self.scriptform.log.info(fmt.format(self.address_string(), args))
def do_GET(self):

Loading…
Cancel
Save