# HG changeset patch # User Jeff Hammel # Date 1324590507 28800 # Node ID 95be44a090472fca72b625fdd616d1925670a16c # Parent 44ca3474d03d7a277f4952d3733ca0969f0e0f9d pass the git part along to virtualenvfactory diff -r 44ca3474d03d -r 95be44a09047 autobot/projects/mozbase/__init__.py --- 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')))