##// END OF EJS Templates
store.py: accept empty repos...
Adrian Buehlmann -
r6890:fddef060 default
parent child Browse files
Show More
@@ -69,6 +69,8 b' class _store:'
69 69 path = os.path.join(self.path, relpath)
70 70 else:
71 71 path = self.path
72 if not os.path.isdir(path):
73 return
72 74 striplen = len(self.path) + len(os.sep)
73 75 filetypes = ('.d', '.i')
74 76 for f, size in _dirwalk(path, recurse):
General Comments 0
You need to be logged in to leave comments. Login now