From 04aa153b0b9b150ca350ec40b044d86a60c06b30 Mon Sep 17 00:00:00 2001 From: "Filip H.F. \"FiXato\" Slagter" Date: Tue, 12 Jun 2012 02:07:07 +0200 Subject: Bugfix: forgot to strip the newlines from channellocations --- logbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'logbot.py') diff --git a/logbot.py b/logbot.py index 0e465da..c8411d2 100755 --- a/logbot.py +++ b/logbot.py @@ -383,7 +383,7 @@ class Logbot(SingleServerIRCBot): self.channel_locations = {} if os.path.exists(CHANNEL_LOCATIONS_FILE): f = open(CHANNEL_LOCATIONS_FILE, 'r') - self.channel_locations = dict((k.lower(), v) for k, v in dict([line.split(None,1) for line in f.readlines()]).iteritems()) + self.channel_locations = dict((k.lower(), v) for k, v in dict([line.strip().split(None,1) for line in f.readlines()]).iteritems()) def connect_ftp(): print "Using FTP %s..." % (FTP_SERVER) -- cgit v1.2.3