plugins/twitter: unescape html entities

This commit is contained in:
Ryan Hitchman 2013-10-07 14:41:38 -07:00
parent a97715d5c0
commit 0796167813
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ def twitter(inp, api_key=None):
except IndexError:
return 'error: not that many tweets found'
text = tweet["text"]
text = http.unescape(tweet["text"])
screen_name = tweet["user"]["screen_name"]
time = tweet["created_at"]