index : logbot | |
Archlinux32 log bot | gitolite user |
summaryrefslogtreecommitdiff |
author | Filip H.F. "FiXato" Slagter <fixato@gmail.com> | 2012-06-12 02:07:07 +0200 |
---|---|---|
committer | Filip H.F. "FiXato" Slagter <fixato@gmail.com> | 2012-06-12 02:07:07 +0200 |
commit | 04aa153b0b9b150ca350ec40b044d86a60c06b30 (patch) | |
tree | 13b7332afb183f166ec6974ee991cab3011e4734 | |
parent | 7af5c60e2afbf9df4fff8f8dcc9478901bab6462 (diff) |
-rwxr-xr-x | logbot.py | 2 |
@@ -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) |