Mercurial > hg > autobot
changeset 262:5cd95c967f70
add publichtmlport to autobot project
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Wed, 28 Dec 2011 21:00:25 -0800 |
parents | 0927a07dfab3 |
children | a13749f19067 |
files | autobot/projects/autobot/__init__.py |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/autobot/projects/autobot/__init__.py Wed Dec 28 20:43:53 2011 -0800 +++ b/autobot/projects/autobot/__init__.py Wed Dec 28 21:00:25 2011 -0800 @@ -9,7 +9,7 @@ sources = {'hg': ['http://k0s.org/mozilla/hg/autobot']} - def __init__(self, platform=None, slaveport=7357, htmlport=7358, hg=None): + def __init__(self, platform=None, slaveport=7357, htmlport=7358, publichtmlport=7359, hg=None): # setup the environment PythonSourceFactory.__init__(self, platform=platform, name='autobot', hg=hg) @@ -30,6 +30,7 @@ '--ircChannels', '', # no channels '--slaveport', str(slaveport), '--htmlport', str(htmlport), + '--publichtmlport', str(publichtmlport), 'bot'], description="make an autobot", workdir=WithProperties('%(virtualenv)s'),