# HG changeset patch # User Nicolas Dumazet # Date 2009-06-28 10:31:16 # Node ID e1d119f450f0c619b0dc2eb91fbf61a2db5a929b # Parent 7c7a672e9db718776fb345f21c671c94409f7d41 inotify: server: remove wpath method Only called once. And can be simplified to an easy oneliner. diff --git a/hgext/inotify/server.py b/hgext/inotify/server.py --- a/hgext/inotify/server.py +++ b/hgext/inotify/server.py @@ -288,14 +288,6 @@ class repowatcher(pollable): self.add_watch(self.repo.path, inotify.IN_DELETE) self.check_dirstate() - def wpath(self, evt): - path = evt.fullpath - if path == self.repo.root: - return '' - if path.startswith(self.wprefix): - return path[len(self.wprefix):] - raise 'wtf? ' + path - def dir(self, tree, path): if path: for name in path.split('/'): @@ -585,7 +577,9 @@ class repowatcher(pollable): self.ui.note(_('%s reading %d events\n') % (self.event_time(), len(events))) for evt in events: - wpath = self.wpath(evt) + assert evt.fullpath.startswith(self.wprefix) + wpath = evt.fullpath[len(self.wprefix):] + if evt.mask & inotify.IN_UNMOUNT: self.process_unmount(wpath, evt) elif evt.mask & (inotify.IN_MODIFY | inotify.IN_ATTRIB):