From a0d0a9b56c0f8eee4e951b4176698e5829674f14 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Mon, 6 Apr 2009 13:05:03 +0000 Subject: [PATCH] fix function name --- test/lib/xmpp_mocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lib/xmpp_mocks.py b/test/lib/xmpp_mocks.py index 4b6b469ad..015d3ee31 100644 --- a/test/lib/xmpp_mocks.py +++ b/test/lib/xmpp_mocks.py @@ -47,7 +47,7 @@ class IdleMock: Returns True if event was set, False on timeout ''' self._event.wait(IDLEMOCK_TIMEOUT) - if self._event.is_set(): + if self._event.isSet(): self._event.clear() return True else: