##// END OF EJS Templates
store: skip decodir check if path does not contain '.hg/'...
Nicolas Dumazet -
r11790:ba9957bc default
parent child Browse files
Show More
@@ -22,7 +22,7 b' def encodedir(path):'
22 22 .replace(".d/", ".d.hg/"))
23 23
24 24 def decodedir(path):
25 if not path.startswith('data/'):
25 if not path.startswith('data/') or ".hg/" not in path:
26 26 return path
27 27 return (path
28 28 .replace(".d.hg/", ".d/")
General Comments 0
You need to be logged in to leave comments. Login now