##// 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 path = os.path.join(self.path, relpath)
69 path = os.path.join(self.path, relpath)
70 else:
70 else:
71 path = self.path
71 path = self.path
72 if not os.path.isdir(path):
73 return
72 striplen = len(self.path) + len(os.sep)
74 striplen = len(self.path) + len(os.sep)
73 filetypes = ('.d', '.i')
75 filetypes = ('.d', '.i')
74 for f, size in _dirwalk(path, recurse):
76 for f, size in _dirwalk(path, recurse):
General Comments 0
You need to be logged in to leave comments. Login now