summaryrefslogtreecommitdiff
path: root/python2/examples/daemon.py
diff options
context:
space:
mode:
Diffstat (limited to 'python2/examples/daemon.py')
-rw-r--r--python2/examples/daemon.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python2/examples/daemon.py b/python2/examples/daemon.py
index 33281d7..26eaffe 100644
--- a/python2/examples/daemon.py
+++ b/python2/examples/daemon.py
@@ -11,6 +11,8 @@ class Counter(object):
"""
def __init__(self):
self.count = 0
+ def plusone(self):
+ self.count += 1
def on_loop(notifier, counter):
"""
@@ -24,7 +26,7 @@ def on_loop(notifier, counter):
sys.exit(0)
else:
sys.stdout.write("Loop %d\n" % counter.count)
- counter.count += 1
+ counter.plusone()
wm = pyinotify.WatchManager()
notifier = pyinotify.Notifier(wm)