summaryrefslogtreecommitdiff
path: root/examples/download_avatars.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/download_avatars.py')
-rwxr-xr-xexamples/download_avatars.py14
1 files changed, 1 insertions, 13 deletions
diff --git a/examples/download_avatars.py b/examples/download_avatars.py
index 9dd0283f..dc35df80 100755
--- a/examples/download_avatars.py
+++ b/examples/download_avatars.py
@@ -9,7 +9,6 @@
See the file LICENSE for copying permission.
"""
-import sys
import logging
import getpass
import threading
@@ -19,17 +18,6 @@ import slixmpp
from slixmpp.exceptions import XMPPError
-# 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
-
-
FILE_TYPES = {
'image/png': 'png',
'image/gif': 'gif',
@@ -154,7 +142,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: ")