##// END OF EJS Templates
Fix bug involving "hg debugwalk -Ipattern" from repository root.
Bryan O'Sullivan -
r892:f481c9b6 default
parent child Browse files
Show More
@@ -502,6 +502,7 b' class dirstate:'
502 for dir, subdirs, fl in os.walk(f):
502 for dir, subdirs, fl in os.walk(f):
503 d = dir[len(self.root) + 1:]
503 d = dir[len(self.root) + 1:]
504 nd = util.normpath(d)
504 nd = util.normpath(d)
505 if nd == '.': nd = ''
505 if seen(nd):
506 if seen(nd):
506 subdirs[:] = []
507 subdirs[:] = []
507 continue
508 continue
General Comments 0
You need to be logged in to leave comments. Login now