# HG changeset patch # User Jeff Hammel # Date 1295903401 28800 # Node ID 260cebcbb3096ef08beb9180f881877a6a4ea0c1 # Parent 19719b24957e8bfe7aed374319f244ae0aa62250 move towards the new way of noting sources diff -r 19719b24957e -r 260cebcbb309 autobot/projects/mozmill/__init__.py --- a/autobot/projects/mozmill/__init__.py Mon Jan 24 13:01:26 2011 -0800 +++ b/autobot/projects/mozmill/__init__.py Mon Jan 24 13:10:01 2011 -0800 @@ -7,12 +7,13 @@ factory to test Mozmill http://github.com/mozautomation/mozmill """ + + sources = {'git': ['http://github.com/mozautomation/mozmill']} def __init__(self, firefox_url=None): # setup the environment - VirtualenvFactory.__init__(self, name='mozmill', - git_sources=['http://github.com/mozautomation/mozmill']) + VirtualenvFactory.__init__(self, name='mozmill') self.addStep(ShellCommand(command=['bash', 'setup_development.sh'], workdir=WithProperties('%(virtualenv)s/src/mozmill')))