diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-06-14 09:41:01 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-06-14 09:41:01 -0400 |
commit | 18f7ecbc364a2e95def74d6e7546e920cc38e238 (patch) | |
tree | 14847e3605ea66246599404a2207be7549d32bca /coverage/control.py | |
parent | 6e5e9ae9d54e5fc1f4ac96c51344cb37c8ea3395 (diff) | |
download | python-coveragepy-18f7ecbc364a2e95def74d6e7546e920cc38e238.tar.gz |
Debugging plugin wrappers
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 2 |
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: |