Merge remote-tracking branch 'michaelbeaumont/fix/issue-543' into develop
This commit is contained in:
commit
5dd095a846
|
@ -51,6 +51,10 @@ class INotifyTreeWatcher(INotify):
|
|||
''' Add watches for this directory and all its descendant directories,
|
||||
recursively. '''
|
||||
base = realpath(base)
|
||||
# There may exist a link which leads to an endless
|
||||
# add_watches loop or to maximum recursion depth exceeded
|
||||
if not top_level and base in self.watched_dirs:
|
||||
return
|
||||
try:
|
||||
is_dir = self.add_watch(base)
|
||||
except OSError as e:
|
||||
|
|
Loading…
Reference in New Issue