diff --git a/app/routes.py b/app/routes.py
index 31367da..7dc24a0 100644
--- a/app/routes.py
+++ b/app/routes.py
@@ -871,7 +871,8 @@ def getFeed(urls):
newPost["twitterName"] = post.find('a', attrs={'class': 'fullname'}).text
newPost["timeStamp"] = date_time_str
newPost["date"] = post.find('span', attrs={'class': 'tweet-date'}).find('a').text
- newPost["content"] = Markup(post.find('div', attrs={'class': 'tweet-content'}).replace("\n", "
"))
+ content=post.find('div', attrs={'class': 'tweet-content'})
+ newPost["content"] = Markup(str(content).replace("\n", "
"))
if post.find('div', attrs={'class': 'retweet-header'}):
newPost["username"] = post.find('div', attrs={'class': 'retweet-header'}).find('div', attrs={