summaryrefslogtreecommitdiff
path: root/coverage/control.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/control.py')
-rw-r--r--coverage/control.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/coverage/control.py b/coverage/control.py
index 8650dbcb..1b21c3bd 100644
--- a/coverage/control.py
+++ b/coverage/control.py
@@ -189,12 +189,6 @@ class Coverage(object):
# Load plugins
self.plugins = Plugins.load_plugins(self.config.plugins, self.config)
- # TEMPORARY, because the plugin support is implemented in PyTracer.
- # This will be removed when that support is moved into CTracer.
- if self.plugins:
- self._warn("Setting timid=True to support plugins.")
- self.config.timid = True
-
self.file_tracers = []
for plugin in self.plugins:
if overrides(plugin, "file_tracer", CoveragePlugin):