diff options
author | Lance Stout <lancestout@gmail.com> | 2011-08-17 21:30:47 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-08-17 21:30:47 -0700 |
commit | 004eabf80959ebcaeddf2e15065bd4f50ad10974 (patch) | |
tree | e62c243c6b1a539a0fa71030011eb88762068b6b /sleekxmpp/plugins/xep_0012.py | |
parent | 62230fc970f86b11bc74ee448e30cbe93f477e72 (diff) | |
download | slixmpp-004eabf80959ebcaeddf2e15065bd4f50ad10974.tar.gz slixmpp-004eabf80959ebcaeddf2e15065bd4f50ad10974.tar.bz2 slixmpp-004eabf80959ebcaeddf2e15065bd4f50ad10974.tar.xz slixmpp-004eabf80959ebcaeddf2e15065bd4f50ad10974.zip |
Update plugins that use Iq stanzas to work with new exceptions.
Diffstat (limited to 'sleekxmpp/plugins/xep_0012.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0012.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sleekxmpp/plugins/xep_0012.py b/sleekxmpp/plugins/xep_0012.py index d636d4d7..8fe818b8 100644 --- a/sleekxmpp/plugins/xep_0012.py +++ b/sleekxmpp/plugins/xep_0012.py @@ -112,7 +112,4 @@ class xep_0012(base.base_plugin): iq.attrib['from'] = self.xmpp.boundjid.full
id = iq.get('id')
result = iq.send()
- if result and result is not None and result.get('type', 'error') != 'error':
- return result['last_activity']['seconds']
- else:
- return False
+ return result['last_activity']['seconds']
|