mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-01-25 19:44:13 +01:00
Bug fix in HTTP server.
This commit is contained in:
parent
667d7c34b4
commit
b9baa579fe
@ -95,7 +95,7 @@ class SupyHTTPRequestHandler(BaseHTTPRequestHandler):
|
|||||||
'wfile'):
|
'wfile'):
|
||||||
setattr(callback, name, getattr(self, name))
|
setattr(callback, name, getattr(self, name))
|
||||||
# We call doGet, because this is more supybotic than do_GET.
|
# 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):
|
def log_message(self, format, *args):
|
||||||
log.info('HTTP request: %s - %s' %
|
log.info('HTTP request: %s - %s' %
|
||||||
|
Loading…
Reference in New Issue
Block a user