python-inotify 0.9.0 causes an exception when a file is not found

- Causes Favorites list to be blank if python-inotify is install in Fedora
This commit is contained in:
William Witt 2010-09-23 11:30:57 +08:00 committed by Clement Lefebvre
parent dc9f8840a6
commit 5b8975037a

View File

@ -23,11 +23,13 @@ if hasInotify:
def addMonitor( self, filename, callback, args = None ):
mask = pyinotify.IN_DELETE | pyinotify.IN_CREATE | pyinotify.IN_MODIFY
mId = self.wm.add_watch( filename, mask, rec = True)[filename]
if mId >= 0:
self.callbacks[mId] = ( callback, args )
try:
mask = pyinotify.IN_DELETE | pyinotify.IN_CREATE | pyinotify.IN_MODIFY
mId = self.wm.add_watch( filename, mask, rec = True)[filename]
if mId >= 0:
self.callbacks[mId] = ( callback, args )
except Exception, e:
mId=0
return mId
def removeMonitor( self, monitorId ):