Skip to content

Commit

Permalink
Merge pull request #1734 from sa2ajj/fix-status-plugins
Browse files Browse the repository at this point in the history
buildbot.status is not available in master any more
  • Loading branch information
tardyp committed Jun 24, 2015
2 parents 376cd49 + 0f50b87 commit a5791fc
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions master/buildbot/plugins/__init__.py
Expand Up @@ -21,11 +21,10 @@
from buildbot.interfaces import IBuildStep
from buildbot.interfaces import IChangeSource
from buildbot.interfaces import IScheduler
from buildbot.interfaces import IStatusReceiver
from buildbot.plugins.db import get_plugins


__all__ = ['changes', 'schedulers', 'buildslave', 'steps', 'status', 'util']
__all__ = ['changes', 'schedulers', 'buildslave', 'steps', 'util', 'reporters']


# Names here match the names of the corresponding Buildbot module, hence
Expand All @@ -34,6 +33,5 @@
schedulers = get_plugins('schedulers', IScheduler)
buildslave = get_plugins('buildslave', IBuildSlave)
steps = get_plugins('steps', IBuildStep)
status = get_plugins('status', IStatusReceiver)
util = get_plugins('util', None)
reporters = get_plugins('reporters', None)

0 comments on commit a5791fc

Please sign in to comment.