From 5ab77c745270d7d5c016c1dc7ef2a82533a4b16e Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Thu, 17 Jul 2014 14:19:04 +0200 Subject: Rename to slixmpp --- examples/disco_browser.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'examples/disco_browser.py') diff --git a/examples/disco_browser.py b/examples/disco_browser.py index aeb4fb5e..9df22bbc 100755 --- a/examples/disco_browser.py +++ b/examples/disco_browser.py @@ -2,9 +2,9 @@ # -*- coding: utf-8 -*- """ - SleekXMPP: The Sleek XMPP Library + Slixmpp: The Slick XMPP Library Copyright (C) 2010 Nathanael C. Fritz - This file is part of SleekXMPP. + This file is part of Slixmpp. See the file LICENSE for copying permission. """ @@ -14,22 +14,22 @@ import logging import getpass from optparse import OptionParser -import sleekxmpp -from sleekxmpp.exceptions import IqError, IqTimeout +import slixmpp +from slixmpp.exceptions import IqError, IqTimeout # 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 Disco(sleekxmpp.ClientXMPP): +class Disco(slixmpp.ClientXMPP): """ A demonstration for using basic service discovery. @@ -42,7 +42,7 @@ class Disco(sleekxmpp.ClientXMPP): """ def __init__(self, jid, password, target_jid, target_node='', get=''): - sleekxmpp.ClientXMPP.__init__(self, jid, password) + slixmpp.ClientXMPP.__init__(self, jid, password) # Using service discovery requires the XEP-0030 plugin. self.register_plugin('xep_0030') -- cgit v1.2.3