summaryrefslogtreecommitdiff
path: root/coverage/control.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-06-14 09:41:01 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-06-14 09:41:01 -0400
commit18f7ecbc364a2e95def74d6e7546e920cc38e238 (patch)
tree14847e3605ea66246599404a2207be7549d32bca /coverage/control.py
parent6e5e9ae9d54e5fc1f4ac96c51344cb37c8ea3395 (diff)
downloadpython-coveragepy-18f7ecbc364a2e95def74d6e7546e920cc38e238.tar.gz
Debugging plugin wrappers
Diffstat (limited to 'coverage/control.py')
-rw-r--r--coverage/control.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/control.py b/coverage/control.py
index 3cae1d3..b982c79 100644
--- a/coverage/control.py
+++ b/coverage/control.py
@@ -202,7 +202,7 @@ class Coverage(object):
self.debug = DebugControl(self.config.debug, self._debug_file)
# Load plugins
- self.plugins = Plugins.load_plugins(self.config.plugins, self.config)
+ self.plugins = Plugins.load_plugins(self.config.plugins, self.config, self.debug)
self.file_tracing_plugins = []
for plugin in self.plugins: