mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-01-11 12:42:34 +01:00
Bug fix in HTTP server.
This commit is contained in:
parent
667d7c34b4
commit
b9baa579fe
@ -95,7 +95,7 @@ class SupyHTTPRequestHandler(BaseHTTPRequestHandler):
|
||||
'wfile'):
|
||||
setattr(callback, name, getattr(self, name))
|
||||
# We call doGet, because this is more supybotic than do_GET.
|
||||
callback.doGet(self, '/'.join(self.path[2:]))
|
||||
callback.doGet(self, '/' + '/'.join(self.path.split('/')[2:]))
|
||||
|
||||
def log_message(self, format, *args):
|
||||
log.info('HTTP request: %s - %s' %
|
||||
|
Loading…
Reference in New Issue
Block a user