Fix an error on Linux during export

Fix #826
pull/862/head
Julien Duponchelle 8 years ago
parent 46b6e7c5ee
commit 1b6411f88e
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -440,7 +440,7 @@ class ProjectHandler:
controller = Controller.instance()
project = yield from controller.get_loaded_project(request.match_info["project_id"])
path = request.match_info["path"]
path = os.path.normpath(path)
path = os.path.normpath(path).strip("/")
# Raise error if user try to escape
if path[0] == ".":

Loading…
Cancel
Save