Mercurial > hg > autobot
changeset 234:44ca3474d03d
update to allow source
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 22 Dec 2011 13:24:02 -0800 |
parents | 82631d1ba49e |
children | 95be44a09047 |
files | autobot/process/factory.py autobot/projects/autobot/__init__.py |
diffstat | 2 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/autobot/process/factory.py Wed Dec 21 16:30:10 2011 -0800 +++ b/autobot/process/factory.py Thu Dec 22 13:24:02 2011 -0800 @@ -1,5 +1,5 @@ """ -generic factories +generic factories for autobot """ from autobot.steps import CreateVirtualenv
--- a/autobot/projects/autobot/__init__.py Wed Dec 21 16:30:10 2011 -0800 +++ b/autobot/projects/autobot/__init__.py Thu Dec 22 13:24:02 2011 -0800 @@ -9,10 +9,10 @@ sources = {'hg': ['http://k0s.org/mozilla/hg/autobot']} - def __init__(self, platform=None, slaveport=7357, htmlport=7358): + def __init__(self, platform=None, slaveport=7357, htmlport=7358, hg=None): # setup the environment - PythonSourceFactory.__init__(self, platform=platform, name='autobot') + PythonSourceFactory.__init__(self, platform=platform, name='autobot', hg=hg) # find the necessary scripts self.findScript('create-autobot')