Remove extra auth, rights and storage modules

This commit is contained in:
Guillaume Ayoub 2016-04-07 19:02:52 +02:00
parent 1c4acc44a8
commit 1001bcb676
17 changed files with 134 additions and 1119 deletions

View file

@ -49,8 +49,7 @@ def is_safe_path_component(path):
"""
if not path:
return False
head, _ = posixpath.split(path)
if head:
if posixpath.split(path)[0]:
return False
if path in (".", ".."):
return False