Skip to content

Commit

Permalink
Pass codebase as kwargs, base scheduler will catch codebases and set …
Browse files Browse the repository at this point in the history
…default value
  • Loading branch information
hborkhuis committed May 21, 2012
1 parent 63ed426 commit 7520b48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/buildbot/schedulers/triggerable.py
Expand Up @@ -23,7 +23,7 @@ class Triggerable(base.BaseScheduler):

compare_attrs = base.BaseScheduler.compare_attrs

def __init__(self, name, builderNames, properties={}, codebases = {'':{}}):
def __init__(self, name, builderNames, properties={}, **kwargs):
base.BaseScheduler.__init__(self, name, builderNames, properties,
codebases = codebases)
self._waiters = {}
Expand Down

0 comments on commit 7520b48

Please sign in to comment.