Return False in place of None to indicate absense of changes

Fixes #1052: another part of it
This commit is contained in:
ZyX 2014-09-02 22:09:07 +04:00
parent ad519b5e91
commit a2c6d79b2f
1 changed files with 1 additions and 0 deletions

View File

@ -129,6 +129,7 @@ class UvFileWatcher(UvWatcher):
if path not in self.watches:
self.watch(path)
return True
return False
class UvTreeWatcher(UvWatcher):