summaryrefslogtreecommitdiff
path: root/coverage/control.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/control.py')
-rw-r--r--coverage/control.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/coverage/control.py b/coverage/control.py
index 9ccd3b21..e1931a5b 100644
--- a/coverage/control.py
+++ b/coverage/control.py
@@ -268,10 +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__,
- debug=self.debug,
- )
+ self.data = CoverageData(debug=self.debug)
self.data_files = CoverageDataFiles(basename=self.config.data_file)
# The dirs for files considered "installed with the interpreter".