diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-07-17 14:19:04 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-07-17 14:19:04 +0200 |
commit | 5ab77c745270d7d5c016c1dc7ef2a82533a4b16e (patch) | |
tree | 259377cc666f8b9c7954fc4e7b8f7a912bcfe101 /examples/pubsub_events.py | |
parent | e5582694c07236e6830c20361840360a1dde37f3 (diff) | |
download | slixmpp-5ab77c745270d7d5c016c1dc7ef2a82533a4b16e.tar.gz slixmpp-5ab77c745270d7d5c016c1dc7ef2a82533a4b16e.tar.bz2 slixmpp-5ab77c745270d7d5c016c1dc7ef2a82533a4b16e.tar.xz slixmpp-5ab77c745270d7d5c016c1dc7ef2a82533a4b16e.zip |
Rename to slixmpp
Diffstat (limited to 'examples/pubsub_events.py')
-rwxr-xr-x | examples/pubsub_events.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/pubsub_events.py b/examples/pubsub_events.py index 12c33a76..679112af 100755 --- a/examples/pubsub_events.py +++ b/examples/pubsub_events.py @@ -6,24 +6,24 @@ import logging import getpass from optparse import OptionParser -import sleekxmpp -from sleekxmpp.xmlstream import ET, tostring -from sleekxmpp.xmlstream.matcher import StanzaPath -from sleekxmpp.xmlstream.handler import Callback +import slixmpp +from slixmpp.xmlstream import ET, tostring +from slixmpp.xmlstream.matcher import StanzaPath +from slixmpp.xmlstream.handler import Callback # Python versions before 3.0 do not use UTF-8 encoding # by default. To ensure that Unicode is handled properly -# throughout SleekXMPP, we will set the default encoding +# throughout Slixmpp, we will set the default encoding # ourselves to UTF-8. if sys.version_info < (3, 0): - from sleekxmpp.util.misc_ops import setdefaultencoding + from slixmpp.util.misc_ops import setdefaultencoding setdefaultencoding('utf8') else: raw_input = input -class PubsubEvents(sleekxmpp.ClientXMPP): +class PubsubEvents(slixmpp.ClientXMPP): def __init__(self, jid, password): super(PubsubEvents, self).__init__(jid, password) |