Strip whitespaces from strings

This commit is contained in:
Klaus-Uwe Mitterer 2015-03-18 23:25:15 +01:00
parent eb70076565
commit 84b83a9c48

View file

@ -33,14 +33,14 @@ while True:
for status in timeline:
if status.text.find("@" + user) > 1:
continue
text = status.text.encode("UTF-8")[status.text.find(" ")+1:]
text = status.text.encode("UTF-8")[status.text.find(" ")+1:].strip()
sender = status.user.screen_name.encode("UTF-8")
twid = int(status.id)
try:
if "-" in text:
loc = text.find("-")
date = dateutil.parser.parse(text[:loc-1])
comment = HTMLParser.HTMLParser().unescape(text[loc+1:])
comment = HTMLParser.HTMLParser().unescape(text[loc+1:]).strip()
else:
date = dateutil.parser.parse(text)
comment = ""