diff options
author | Lance Stout <lancestout@gmail.com> | 2012-10-24 13:07:19 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-10-24 13:07:19 -0700 |
commit | 06a690a2592cba388877391935ed4168d101a231 (patch) | |
tree | 54d5f70297b425cbb47ebc13415eaccf914c2152 /examples/custom_stanzas/custom_stanza_provider.py | |
parent | 14c9e9a9cc263a2695cb9d8e5575d60bd0a55197 (diff) | |
parent | 52feabbe7641f19a17810438d2469b2395b2819f (diff) | |
download | slixmpp-06a690a2592cba388877391935ed4168d101a231.tar.gz slixmpp-06a690a2592cba388877391935ed4168d101a231.tar.bz2 slixmpp-06a690a2592cba388877391935ed4168d101a231.tar.xz slixmpp-06a690a2592cba388877391935ed4168d101a231.zip |
Merge branch 'master' into develop
Diffstat (limited to 'examples/custom_stanzas/custom_stanza_provider.py')
-rwxr-xr-x | examples/custom_stanzas/custom_stanza_provider.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/custom_stanzas/custom_stanza_provider.py b/examples/custom_stanzas/custom_stanza_provider.py index b532c17c..b0e00247 100755 --- a/examples/custom_stanzas/custom_stanza_provider.py +++ b/examples/custom_stanzas/custom_stanza_provider.py @@ -28,8 +28,8 @@ from stanza import Action # throughout SleekXMPP, we will set the default encoding # ourselves to UTF-8. if sys.version_info < (3, 0): - reload(sys) - sys.setdefaultencoding('utf8') + from sleekxmpp.util.misc_ops import setdefaultencoding + setdefaultencoding('utf8') else: raw_input = input @@ -56,8 +56,8 @@ class ActionBot(sleekxmpp.ClientXMPP): StanzaPath('iq@type=set/action'), self._handle_action)) - self.add_event_handler('custom_action', - self._handle_action_event, + self.add_event_handler('custom_action', + self._handle_action_event, threaded=True) register_stanza_plugin(Iq, Action) |