diff options
Diffstat (limited to 'examples/send_client.py')
-rwxr-xr-x | examples/send_client.py | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/examples/send_client.py b/examples/send_client.py index 579807b1..60c589e4 100755 --- a/examples/send_client.py +++ b/examples/send_client.py @@ -9,23 +9,12 @@ See the file LICENSE for copying permission. """ -import sys import logging import getpass from optparse import OptionParser import slixmpp -# 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 SendMsgBot(slixmpp.ClientXMPP): @@ -106,13 +95,13 @@ 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: ") if opts.to is None: - opts.to = raw_input("Send To: ") + opts.to = input("Send To: ") if opts.message is None: - opts.message = raw_input("Message: ") + opts.message = input("Message: ") # Setup the EchoBot and register plugins. Note that while plugins may # have interdependencies, the order in which you register them does |