From ef1fbabe8815b4755164b76987f8e2d2b24ba753 Mon Sep 17 00:00:00 2001 From: Timo Ewalds Date: Thu, 23 Oct 2014 17:24:33 -0400 Subject: [PATCH] Revert "Unescape stream data from Twitter" This reverts commit 09e29c815bd21514ec62df2cd8e8d176678bee40 and fixes https://github.com/tweepy/tweepy/issues/495 --- tweepy/streaming.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tweepy/streaming.py b/tweepy/streaming.py index c292220..c87ce10 100644 --- a/tweepy/streaming.py +++ b/tweepy/streaming.py @@ -7,7 +7,6 @@ import requests from requests.exceptions import Timeout from threading import Thread from time import sleep -from HTMLParser import HTMLParser import ssl from tweepy.models import Status @@ -40,7 +39,7 @@ class StreamListener(object): Override this method if you wish to manually handle the stream data. Return False to stop stream and close connection. """ - data = json.loads(HTMLParser().unescape(raw_data)) + data = json.loads(raw_data) if 'in_reply_to_status_id' in data: status = Status.parse(self.api, data) -- 2.25.1