GitHub: Fix multi-channel announces.

master
Valentin Lorentz 2012-07-30 16:09:53 +00:00
parent 04745e15be
commit dcf794f425
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ class GitHub(callbacks.Plugin):
announces = [x.split(' | ') for x in announces]
output = {}
for repo, chan in announces:
if chan not in output:
if repo not in output:
output[repo] = []
output[repo].append(chan)
return output