##// 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 .replace(".d/", ".d.hg/"))
22 .replace(".d/", ".d.hg/"))
23
23
24 def decodedir(path):
24 def decodedir(path):
25 if not path.startswith('data/'):
25 if not path.startswith('data/') or ".hg/" not in path:
26 return path
26 return path
27 return (path
27 return (path
28 .replace(".d.hg/", ".d/")
28 .replace(".d.hg/", ".d/")
General Comments 0
You need to be logged in to leave comments. Login now