Add space in place of ".."
This commit is contained in:
parent
a3470f8e8c
commit
5ad1fac2cc
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ while True:
|
|||
timeline = tweepy.Cursor(api.search, q=search, since_id=savepoint).items()
|
||||
|
||||
for status in timeline:
|
||||
text = status.text.encode("UTF-8").replace("..","")
|
||||
text = status.text.encode("UTF-8").replace(".."," ")
|
||||
sender = status.user.screen_name.encode("UTF-8")
|
||||
twid = int(status.id)
|
||||
comment = ""
|
||||
|
|
Loading…
Reference in a new issue