From ac0e72d1677f46e5475561a98f6db85087934328 Mon Sep 17 00:00:00 2001 From: Lord Anton Hvornum Date: Thu, 11 May 2017 21:23:48 +0200 Subject: [PATCH] There's no such thing as 'unicode' in Py3 --- fbchat/client.py | 1 - 1 file changed, 1 deletion(-) diff --git a/fbchat/client.py b/fbchat/client.py index 90a8f5d..e0fa43f 100644 --- a/fbchat/client.py +++ b/fbchat/client.py @@ -897,7 +897,6 @@ class Client(object): if type(_fbid) == int: return _fbid - print(type(_fbid)) if type(_fbid) in [str, bytes] and 'fbid:' in _fbid: return int(_fbid[5:])