We only need one '-' between tweet content and short url (tweets.py)
This commit is contained in:
parent
0fd180a5c2
commit
fc5671c7c5
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ class Module(ModuleManager.BaseModule):
|
|||
|
||||
short_url = self.events.on("get.shortlink").call_for_result(
|
||||
url=tweet_link)
|
||||
short_url = " -- %s" % short_url if short_url else ""
|
||||
short_url = " - %s" % short_url if short_url else ""
|
||||
|
||||
if "retweeted_status" in tweet:
|
||||
original_username = "@%s" % tweet["retweeted_status"
|
||||
|
|
Loading…
Reference in a new issue