# HG changeset patch # User Jeff Hammel # Date 1295902886 28800 # Node ID 19719b24957e8bfe7aed374319f244ae0aa62250 # Parent 56b14dd2e3da5905581f3f1f56a8f4b86126a2fa update the template diff -r 56b14dd2e3da -r 19719b24957e autobot/changes/poller.py --- a/autobot/changes/poller.py Mon Jan 24 12:53:15 2011 -0800 +++ b/autobot/changes/poller.py Mon Jan 24 13:01:26 2011 -0800 @@ -111,7 +111,7 @@ def describe(self): status = "" - if not self.master: + if not self.parent: status = "[STOPPED - check log]" str = '%s watching the remote git repository %s, branch: %s %s' \ % (self.name, self.repourl, self.branch, status) diff -r 56b14dd2e3da -r 19719b24957e autobot/template/master/master.cfg --- a/autobot/template/master/master.cfg Mon Jan 24 12:53:15 2011 -0800 +++ b/autobot/template/master/master.cfg Mon Jan 24 13:01:26 2011 -0800 @@ -41,7 +41,7 @@ if not hasattr(f, 'sources'): continue for source_type in sources: - _sources = getattr(_sources).get(source_type, []) + _sources = f.sources.get(source_type, []) for source, branch in _sources: sources[source_type].add((source, branch))