diff options
author | Lance Stout <lancestout@gmail.com> | 2013-02-21 13:55:34 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2013-02-21 13:55:34 -0800 |
commit | 58f5e4702b143208bc80f8a507b358f2c2b1745d (patch) | |
tree | cdb944a57b37d37854329bf9a682a0356fa48368 /sleekxmpp/plugins/xep_0202 | |
parent | 8c763fcf43b2690c4f02a9f577fc2d6d72917ee2 (diff) | |
parent | d9906756cfc546bd182688fdcaeb0aa8fe96e6dd (diff) | |
download | slixmpp-58f5e4702b143208bc80f8a507b358f2c2b1745d.tar.gz slixmpp-58f5e4702b143208bc80f8a507b358f2c2b1745d.tar.bz2 slixmpp-58f5e4702b143208bc80f8a507b358f2c2b1745d.tar.xz slixmpp-58f5e4702b143208bc80f8a507b358f2c2b1745d.zip |
Merge pull request #224 from anton-ryzhov/no_deprecated_methods_usage
Don't use internally deprecated methods
Diffstat (limited to 'sleekxmpp/plugins/xep_0202')
-rw-r--r-- | sleekxmpp/plugins/xep_0202/time.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0202/time.py b/sleekxmpp/plugins/xep_0202/time.py index fe20449d..d5b3af37 100644 --- a/sleekxmpp/plugins/xep_0202/time.py +++ b/sleekxmpp/plugins/xep_0202/time.py @@ -48,7 +48,7 @@ class XEP_0202(BasePlugin): self.local_time = default_local_time
- self.xmpp.registerHandler(
+ self.xmpp.register_handler(
Callback('Entity Time',
StanzaPath('iq/entity_time'),
self._handle_time_request))
|