Merge branch 'httpserver' into testing

This commit is contained in:
Valentin Lorentz 2011-06-24 16:37:54 +02:00
commit a1b2e931b7

View File

@ -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' %