summaryrefslogtreecommitdiff
path: root/examples/proxy_echo_client.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/proxy_echo_client.py')
-rwxr-xr-xexamples/proxy_echo_client.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/proxy_echo_client.py b/examples/proxy_echo_client.py
index 25bfc891..98935b9c 100755
--- a/examples/proxy_echo_client.py
+++ b/examples/proxy_echo_client.py
@@ -21,8 +21,8 @@ import sleekxmpp
# throughout SleekXMPP, we will set the default encoding
# ourselves to UTF-8.
if sys.version_info < (3, 0):
- reload(sys)
- sys.setdefaultencoding('utf8')
+ from sleekxmpp.util.misc_ops import setdefaultencoding
+ setdefaultencoding('utf8')
else:
raw_input = input