From e25b3aca9d6f84d7b6c99972d080ef75a0839f96 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Sun, 17 Jan 2016 12:37:23 -0600 Subject: [PATCH] twitter: don't append colon to nick when replying just a style thing, nbd --- dr_botzo/twitter/ircplugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dr_botzo/twitter/ircplugin.py b/dr_botzo/twitter/ircplugin.py index 34af317..b58e701 100644 --- a/dr_botzo/twitter/ircplugin.py +++ b/dr_botzo/twitter/ircplugin.py @@ -171,7 +171,7 @@ class Twitter(Plugin): target = replyee_tweet['user']['screen_name'] try: - reptweet = "@{0:s}: {1:s}".format(target, tweet) + reptweet = "@{0:s} {1:s}".format(target, tweet) if self.twit.update_status(status=reptweet, display_coordinates=False, in_reply_to_status_id=status_id) is not None: return self.bot.reply(event, "'{0:s}' tweeted.".format(tweet)) else: