# HG changeset patch # User Jeff Hammel # Date 1294437946 28800 # Node ID 6abe5fb1fafc969239829c27e4c3a03636bba9f2 # Parent 016ffd7bfd99105018c47966cd34a6ffa7af0aa7 got a working buildmaster diff -r 016ffd7bfd99 -r 6abe5fb1fafc autobot/process/factory.py --- a/autobot/process/factory.py Fri Jan 07 13:57:39 2011 -0800 +++ b/autobot/process/factory.py Fri Jan 07 14:05:46 2011 -0800 @@ -1,5 +1,6 @@ from autobot.steps import CreateVirtualenv from buildbot.process.factory import BuildFactory +from buildbot.steps.shell import ShellCommand """ generic factories diff -r 016ffd7bfd99 -r 6abe5fb1fafc autobot/projects/__init__.py --- a/autobot/projects/__init__.py Fri Jan 07 13:57:39 2011 -0800 +++ b/autobot/projects/__init__.py Fri Jan 07 14:05:46 2011 -0800 @@ -1,4 +1,4 @@ from logparser import TestLogParserFactory # TODO: import these automagically -factories = {'logparser': TestLogParserFactory} +factories = {'logparser': TestLogParserFactory()}