diff options
author | willmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f> | 2012-06-15 13:25:43 +0000 |
---|---|---|
committer | willmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f> | 2012-06-15 13:25:43 +0000 |
commit | 8b2fa273a272a4b8841c9e712e53f0532e572728 (patch) | |
tree | 04f80eff922a335393daaff3cc736c2896c9fcff /fs/watch.py | |
parent | 2a69a5c9cadbb40dd1a7a9096578b661765278a4 (diff) | |
download | pyfilesystem-8b2fa273a272a4b8841c9e712e53f0532e572728.tar.gz |
Fixes for hide fs
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@792 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/watch.py')
-rw-r--r-- | fs/watch.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/watch.py b/fs/watch.py index dc24cf4..815cf3e 100644 --- a/fs/watch.py +++ b/fs/watch.py @@ -45,6 +45,7 @@ from fs.filelike import FileWrapper class EVENT(object): """Base class for change notification events.""" def __init__(self,fs,path): + super(EVENT, self).__init__() self.fs = fs if path is not None: path = abspath(normpath(path)) |