From 2b63b2c12e74cdd86aa7a1ee8d23e3ecd11de674 Mon Sep 17 00:00:00 2001 From: Anael Beutot Date: Mon, 7 May 2012 19:05:59 +0200 Subject: [PATCH] Fix tag stop. --- ccnode/tags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccnode/tags.py b/ccnode/tags.py index 40f162c..9eedba6 100644 --- a/ccnode/tags.py +++ b/ccnode/tags.py @@ -69,7 +69,7 @@ class Tag(object): self.watcher.start() def stop(self): - if watcher is not None: + if self.watcher is not None: self.watcher.stop() -- GitLab