This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Cappie detects new hosts on a network.".
The branch, master has been updated via 74e192ba1c9f30f6e5072e5532a2e766b28869b5 (commit) from 17a6cf4e2af6f220ac0049803ce173a275f5dac3 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 74e192ba1c9f30f6e5072e5532a2e766b28869b5 Author: Michael Tremer michael.tremer@ipfire.org Date: Thu Apr 22 20:05:36 2010 +0200
Use old API of threading code to be compatible with python 2.5.
-----------------------------------------------------------------------
Summary of changes: cappie/__init__.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
Difference in files: diff --git a/cappie/__init__.py b/cappie/__init__.py index 2fea5e0..1cf1e8d 100644 --- a/cappie/__init__.py +++ b/cappie/__init__.py @@ -92,12 +92,12 @@ class Cappie(object): iface.start()
while True: - if not self.queue.is_alive(): + if not self.queue.isAlive(): self.log.critical("Queue thread died unexpectedly.") return
for iface in self.__interfaces: - if not iface.is_alive(): + if not iface.isAlive(): self.log.critical("Thread died unexpectedly. %s" % iface.dev) return time.sleep(60)
hooks/post-receive -- Cappie detects new hosts on a network.