Mercurial > hg > autobot
changeset 235:95be44a09047
pass the git part along to virtualenvfactory
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 22 Dec 2011 13:48:27 -0800 |
parents | 44ca3474d03d |
children | 08f0e17367ce |
files | autobot/projects/mozbase/__init__.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/autobot/projects/mozbase/__init__.py Thu Dec 22 13:24:02 2011 -0800 +++ b/autobot/projects/mozbase/__init__.py Thu Dec 22 13:48:27 2011 -0800 @@ -11,8 +11,8 @@ sources = {'git': ['git://github.com/mozilla/mozbase.git'], 'hg': []} - def __init__(self, platform=None): - VirtualenvFactory.__init__(self) + def __init__(self, platform=None, git=None): + VirtualenvFactory.__init__(self, git=git) # setup for development self.addStep(ShellCommand(command=[WithProperties('%(python)s'), 'setup_development.py'], workdir=WithProperties('%(virtualenv)s/src/mozbase')))