mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-26 17:57:59 +00:00
Merge pull request #7664 from ThomasWaldmann/test-for-backslashes
no backslashes
This commit is contained in:
commit
67a32ee603
1 changed files with 0 additions and 2 deletions
|
@ -229,8 +229,6 @@ def make_path_safe(path):
|
|||
`path` contain any '..' elements.
|
||||
"""
|
||||
path = path.lstrip("/")
|
||||
if "\\" in path: # borg always wants slashes, never backslashes.
|
||||
raise ValueError(f"unexpected backslash(es) in path {path!r}")
|
||||
if path.startswith("../") or "/../" in path or path.endswith("/..") or path == "..":
|
||||
raise ValueError(f"unexpected '..' element in path {path!r}")
|
||||
path = os.path.normpath(path)
|
||||
|
|
Loading…
Reference in a new issue