remove comment

This commit is contained in:
Tom Meagher
2013-11-11 14:13:09 -05:00
parent 3f4d485663
commit 59c92621b0

View File

@@ -41,7 +41,6 @@ def filter_tweet(tweet):
for item in htmlsents:
tweet.text = re.sub(item, entity(item), tweet.text)
tweet.text = re.sub(r'\xe9', 'e', tweet.text) #take out accented e
# tweet.text = re.sub(r'\&', '&', tweet.text) #clean up escaped html ampersands
return tweet.text