##// END OF EJS Templates
inotify: fixup rebuilding ignore
Matt Mackall -
r7085:1fcc282e default
parent child Browse files
Show More
@@ -382,8 +382,8 b' class Watcher(object):'
382 # But it's easier to do nothing than to open that can of
382 # But it's easier to do nothing than to open that can of
383 # worms.
383 # worms.
384
384
385 if self.repo.dirstate.ignorefunc is not None:
385 if '_ignore' in self.repo.dirstate.__dict__:
386 self.repo.dirstate.ignorefunc = None
386 delattr(self.repo.dirstate, '_ignore')
387 self.ui.note(_('rescanning due to .hgignore change\n'))
387 self.ui.note(_('rescanning due to .hgignore change\n'))
388 self.scan()
388 self.scan()
389
389
General Comments 0
You need to be logged in to leave comments. Login now