Remove a double / in webkit1 activity's request's filenames
This commit is contained in:
parent
c70e5c678d
commit
6e81c67622
@ -43,7 +43,7 @@ class LocalRequestHandler(BaseHTTPRequestHandler):
|
||||
|
||||
# Handler for the GET requests
|
||||
def do_GET(self):
|
||||
new_path = self.server.path + '/' + self.path
|
||||
new_path = self.server.path + self.path
|
||||
if not os.path.exists(new_path):
|
||||
logging.error('file %s not found.', new_path)
|
||||
self.send_response(404)
|
||||
|
Loading…
Reference in New Issue
Block a user