# HG changeset patch # User Jeff Hammel # Date 1325102911 28800 # Node ID 854af94783ae5efe419390d6b9216df26a26bbab # Parent 2f2642f1dde1ce88e99ac6dadfe88ceae144763c what i actually meant diff -r 2f2642f1dde1 -r 854af94783ae autobot/template/master/master.cfg --- a/autobot/template/master/master.cfg Wed Dec 28 12:02:23 2011 -0800 +++ b/autobot/template/master/master.cfg Wed Dec 28 12:08:31 2011 -0800 @@ -116,7 +116,7 @@ from buildbot.status import words irc = config.master.get('irc', '') if '@' in irc and config.master['channels']: - irc_host, nick = irc.split('@', 1) + nick, irc_host = irc.split('@', 1) c['status'].append(words.IRC(host=irc_host, nick=nick, channels=config.master['channels']))