diff options
Diffstat (limited to 'sleekxmpp/clientxmpp.py')
-rw-r--r-- | sleekxmpp/clientxmpp.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sleekxmpp/clientxmpp.py b/sleekxmpp/clientxmpp.py index 57dc2ec0..6a10a52f 100644 --- a/sleekxmpp/clientxmpp.py +++ b/sleekxmpp/clientxmpp.py @@ -128,7 +128,8 @@ class ClientXMPP(BaseXMPP): self.sessionstarted = False self.bound = False self.bindfail = False - self.schedule("session timeout checker", 15, self._session_timeout_check) + self.schedule("session timeout checker", 15, + self._session_timeout_check) def _session_timeout_check(self): if not self.session_started_event.isSet(): |