Mercurial > hg > autobot
changeset 253:5db74374c122
fix syntax error
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Wed, 28 Dec 2011 11:53:04 -0800 |
parents | 1a4cb5ae38e2 |
children | 2f2642f1dde1 |
files | autobot/template/master/master.cfg |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/autobot/template/master/master.cfg Wed Dec 28 11:36:06 2011 -0800 +++ b/autobot/template/master/master.cfg Wed Dec 28 11:53:04 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): + irc_host, nick = irc.split('@', 1) c['status'].append(words.IRC(host=irc_host, nick=nick channels=config.master['channels']))