Skip to content

Commit

Permalink
Fixed issue 323: plugin override did not work with default plugin man…
Browse files Browse the repository at this point in the history
…ager
  • Loading branch information
jpellerin committed Mar 5, 2010
1 parent a930235 commit 34632c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nose/plugins/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,10 +398,10 @@ class BuiltinPluginManager(PluginManager):
def loadPlugins(self):
"""Load plugins in nose.plugins.builtin
"""
super(BuiltinPluginManager, self).loadPlugins()
from nose.plugins import builtin
for plug in builtin.plugins:
self.addPlugin(plug())
super(BuiltinPluginManager, self).loadPlugins()

try:
import pkg_resources
Expand Down

0 comments on commit 34632c6

Please sign in to comment.