From f8279b4cfa83073890b0d819d64b49b93e96ce6e Mon Sep 17 00:00:00 2001 From: lassulus Date: Tue, 7 Jan 2014 20:43:37 +0100 Subject: ircbot: fix newline in url --- ircbot/rssbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircbot/rssbot.py b/ircbot/rssbot.py index 14126f7a..5e2ca577 100755 --- a/ircbot/rssbot.py +++ b/ircbot/rssbot.py @@ -58,7 +58,7 @@ class RssBot(irc.bot.SingleServerIRCBot): # self.send(entry.title + " " + entry.link + " com: " + entry.comments) #except AttributeError: shorturl = subprocess.check_output(["curl", "-sS", "-F", "uri=" + entry.link, self.url_shortener]).decode() - self.send(entry.title + " " + shorturl + '#' + entry.link.partition('://')[2].partition('/')[0]) + self.send(entry.title + " " + shorturl.strip('\n') + '#' + entry.link.partition('://')[2].partition('/')[0]) self.oldnews.append(entry.link) self.lastnew = datetime.now() sleep(self.to) -- cgit v1.2.3