diff options
Diffstat (limited to 'examples/thirdparty_auth.py')
-rwxr-xr-x | examples/thirdparty_auth.py | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/examples/thirdparty_auth.py b/examples/thirdparty_auth.py index 6772e298..fbe49f8b 100755 --- a/examples/thirdparty_auth.py +++ b/examples/thirdparty_auth.py @@ -24,16 +24,6 @@ except ImportError: import slixmpp from slixmpp.xmlstream import JID -# Python versions before 3.0 do not use UTF-8 encoding -# by default. To ensure that Unicode is handled properly -# throughout Slixmpp, we will set the default encoding -# ourselves to UTF-8. -if sys.version_info < (3, 0): - from slixmpp.util.misc_ops import setdefaultencoding - setdefaultencoding('utf8') -else: - raw_input = input - class ThirdPartyAuthBot(slixmpp.ClientXMPP): @@ -130,7 +120,7 @@ if __name__ == '__main__': format='%(levelname)-8s %(message)s') if opts.jid is None: - opts.jid = raw_input("Username: ") + opts.jid = input("Username: ") if opts.password is None: opts.password = getpass.getpass("Password: ") |