Merge remote-tracking branch 'michaelbeaumont/fix/issue-543' into develop

This commit is contained in:
Kim Silkebækken 2013-06-28 13:54:03 +02:00
commit 5dd095a846
1 changed files with 4 additions and 0 deletions

View File

@ -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: