summaryrefslogtreecommitdiff
path: root/examples/migrate_roster.py
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2014-08-16 22:37:29 +0200
committerFlorent Le Coz <louiz@louiz.org>2014-09-01 02:42:45 +0200
commitdf68bb48961574436c1ffc2463a31cd7d8227606 (patch)
treeb8cf94afe4f18b3fe75baaf63a1c9c0c5c1b314b /examples/migrate_roster.py
parent815e647c97c0b9a25d177bb698b4f737340987b5 (diff)
downloadslixmpp-df68bb48961574436c1ffc2463a31cd7d8227606.tar.gz
slixmpp-df68bb48961574436c1ffc2463a31cd7d8227606.tar.bz2
slixmpp-df68bb48961574436c1ffc2463a31cd7d8227606.tar.xz
slixmpp-df68bb48961574436c1ffc2463a31cd7d8227606.zip
Remove raw_input usage and other python2 support in examples
Diffstat (limited to 'examples/migrate_roster.py')
-rwxr-xr-xexamples/migrate_roster.py14
1 files changed, 2 insertions, 12 deletions
diff --git a/examples/migrate_roster.py b/examples/migrate_roster.py
index 8e923362..e7849135 100755
--- a/examples/migrate_roster.py
+++ b/examples/migrate_roster.py
@@ -8,16 +8,6 @@ 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
-
# Setup the command line arguments.
optp = OptionParser()
@@ -52,12 +42,12 @@ logging.basicConfig(level=opts.loglevel,
format='%(levelname)-8s %(message)s')
if opts.old_jid is None:
- opts.old_jid = raw_input("Old JID: ")
+ opts.old_jid = input("Old JID: ")
if opts.old_password is None:
opts.old_password = getpass.getpass("Old Password: ")
if opts.new_jid is None:
- opts.new_jid = raw_input("New JID: ")
+ opts.new_jid = input("New JID: ")
if opts.new_password is None:
opts.new_password = getpass.getpass("New Password: ")