From 02894623cfcabef6773051ab43bd6ba10b2b351c Mon Sep 17 00:00:00 2001 From: Lee Clemens Date: Tue, 3 Jan 2012 20:14:24 -0500 Subject: [PATCH] Moved dict() above debug statement --- server/filterpyinotify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/filterpyinotify.py b/server/filterpyinotify.py index 94e2328c..2f466960 100644 --- a/server/filterpyinotify.py +++ b/server/filterpyinotify.py @@ -53,8 +53,8 @@ class FilterPyinotify(FileFilter): self.__modified = False # Pyinotify watch manager self.__monitor = pyinotify.WatchManager() - logSys.debug("Created FilterPyinotify") self.__watches = dict() + logSys.debug("Created FilterPyinotify") def callback(self, path):