Parcourir la source

Escape ".." in path regexp properly.

Lauri Alanko il y a 10 ans
Parent
commit
89e9528d0b
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      attic/helpers.py

+ 1 - 1
attic/helpers.py

@@ -498,7 +498,7 @@ def remove_surrogates(s, errors='replace'):
     return s.encode('utf-8', errors).decode('utf-8')
 
 
-_safe_re = re.compile('^((..)?/+)+')
+_safe_re = re.compile('^((\.\.)?/+)+')
 
 
 def make_path_safe(path):