Commit dd7ea21f by rfkelly0

WatchableFS: put mixin classes first in MRO

parent 44857f10
...@@ -266,7 +266,7 @@ class WatchedFile(object): ...@@ -266,7 +266,7 @@ class WatchedFile(object):
self.fs.notify_watchers(MODIFIED,self.path,True) self.fs.notify_watchers(MODIFIED,self.path,True)
class WatchableFS(WrapFS,WatchableFSMixin): class WatchableFS(WatchableFSMixin,WrapFS):
"""FS wrapper simulating watcher callbacks. """FS wrapper simulating watcher callbacks.
This FS wrapper intercepts method calls that modify the underlying FS This FS wrapper intercepts method calls that modify the underlying FS
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment