From: dbs Date: Mon, 31 Jan 2011 04:36:13 +0000 (+0000) Subject: To specify trunk in the ChangeFilter, use branch=None X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=7cf48d0da55aa3a801a78cd1009f5aa2e27c0c32;p=opensrf%2Fbjwebb.git To specify trunk in the ChangeFilter, use branch=None At least, that's how I'm reading the buildbot docs at this time of night: http://buildbot.net/buildbot/docs/current/Change-Filters.html git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@2159 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/examples/buildbot.cfg b/examples/buildbot.cfg index ee87c86..d6ad468 100644 --- a/examples/buildbot.cfg +++ b/examples/buildbot.cfg @@ -35,7 +35,7 @@ c['change_source'] = svnpoller.SVNPoller( ####### FILTERS from buildbot.schedulers.filter import ChangeFilter -trunk_filter = ChangeFilter(branch="trunk") +trunk_filter = ChangeFilter(branch=None) rel_1_6_filter = ChangeFilter(branch="branches/rel_1_6") rel_2_0_filter = ChangeFilter(branch="branches/rel_2_0")