Skip to content

Commit

Permalink
buildbot.status is not available in master any more
Browse files Browse the repository at this point in the history
* remove unnecessary interface
* make sure reporters are exported for 'import *'
  • Loading branch information
Mikhail Sobolev committed Jun 21, 2015
1 parent 65c32ad commit 0f50b87
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 0f50b87

Please sign in to comment.