From 568609dfcb6268dbe21daac9eadc79c2c113fbb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D0=B4=D1=80=D0=B5=D0=B9=20=D0=92=D0=BB=D0=B0?= =?UTF-8?q?=D0=B4=D0=B8=D0=BC=D0=B8=D1=80=D0=BE=D0=B2=D0=B8=D1=87?= Date: Wed, 24 Feb 2016 20:35:39 +0300 Subject: [PATCH] utf8 fix --- src/callbacks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/callbacks.py b/src/callbacks.py index 40cc133..3854b2d 100644 --- a/src/callbacks.py +++ b/src/callbacks.py @@ -46,7 +46,7 @@ def friend_status(a, b, c, d): def friend_message(a, b, c, d, e, f): - print 'Message: ', str(d) + print 'Message: ', d.decode('utf8') def init_callbacks(tox, window):