summaryrefslogtreecommitdiff
path: root/fs/watch.py
diff options
context:
space:
mode:
authorrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2010-09-18 06:45:12 +0000
committerrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2010-09-18 06:45:12 +0000
commitbbe4fa4a3978e549eb702fc45e1d6c88a6bde984 (patch)
treeebecb305ff8cd5236a802fcc973309928bbd7ebd /fs/watch.py
parente0997e0f548c859ba7d36fb53fb3f00a728dfe62 (diff)
downloadpyfilesystem-bbe4fa4a3978e549eb702fc45e1d6c88a6bde984.tar.gz
WatchableFS: put mixin classes first in MRO
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@430 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/watch.py')
-rw-r--r--fs/watch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/watch.py b/fs/watch.py
index 16304da..fe0f729 100644
--- a/fs/watch.py
+++ b/fs/watch.py
@@ -266,7 +266,7 @@ class WatchedFile(object):
self.fs.notify_watchers(MODIFIED,self.path,True)
-class WatchableFS(WrapFS,WatchableFSMixin):
+class WatchableFS(WatchableFSMixin,WrapFS):
"""FS wrapper simulating watcher callbacks.
This FS wrapper intercepts method calls that modify the underlying FS