浏览代码

Merge PR #265 - fixes bug #268 - Merge branch 'fix_safe_re' of https://github.com/lealanko/attic into merge

Thomas Waldmann 10 年之前
父节点
当前提交
1bf5e9ee29
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      attic/helpers.py

+ 1 - 1
attic/helpers.py

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