summaryrefslogtreecommitdiff
path: root/coverage/control.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/control.py')
-rw-r--r--coverage/control.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/coverage/control.py b/coverage/control.py
index 3f6f5aca..e1931a5b 100644
--- a/coverage/control.py
+++ b/coverage/control.py
@@ -268,9 +268,7 @@ class Coverage(object):
# Create the data file. We do this at construction time so that the
# data file will be written into the directory where the process
# started rather than wherever the process eventually chdir'd to.
- self.data = CoverageData(
- collector="coverage v%s" % __version__,
- )
+ self.data = CoverageData(debug=self.debug)
self.data_files = CoverageDataFiles(basename=self.config.data_file)
# The dirs for files considered "installed with the interpreter".