From 4174a9e79d56d66e0b90411f5589537a452f51f7 Mon Sep 17 00:00:00 2001 From: "willmcgugan@gmail.com" Date: Sat, 24 May 2014 23:00:07 +0000 Subject: fix for watch git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@898 67cdc799-7952-0410-af00-57a81ceafa0f --- fs/osfs/watch_inotify.py | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/osfs/watch_inotify.py b/fs/osfs/watch_inotify.py index d0bc6f9..e33f3c7 100644 --- a/fs/osfs/watch_inotify.py +++ b/fs/osfs/watch_inotify.py @@ -184,7 +184,7 @@ class OSFSWatchMixin(WatchableFSMixin): watcher.handle_event(OVERFLOW(self)) if inevt.mask & pyinotify.IN_UNMOUNT: watcher.handle_event(CLOSE(self)) - + def __get_watch_thread(self): """Get the shared watch thread, initializing if necessary. @@ -219,7 +219,7 @@ class SharedThreadedNotifier(threading.Thread): self.watchers[fd] = watcher self._poller.register(fd,select.POLLIN) # Bump the poll object so it recognises the new fd. - os.write(self._pipe_w,"H") + os.write(self._pipe_w,b"H") def del_watcher(self,watcher): fd = watcher._pyinotify_WatchManager.get_fd() diff --git a/setup.py b/setup.py index 5fd35df..ea8f1dc 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from setuptools import setup import sys PY3 = sys.version_info >= (3,) -VERSION = "0.5.0" +VERSION = "0.5.1-dev" COMMANDS = ['fscat', 'fscp', -- cgit v1.2.1