# HG changeset patch # User Jeff Hammel # Date 1324589042 28800 # Node ID 44ca3474d03d7a277f4952d3733ca0969f0e0f9d # Parent 82631d1ba49e00adb50ecf4c4f53414700948200 update to allow source diff -r 82631d1ba49e -r 44ca3474d03d autobot/process/factory.py --- 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 diff -r 82631d1ba49e -r 44ca3474d03d autobot/projects/autobot/__init__.py --- 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')