diff options
Diffstat (limited to 'coverage/data.py')
-rw-r--r-- | coverage/data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/data.py b/coverage/data.py index bd11462..50b309a 100644 --- a/coverage/data.py +++ b/coverage/data.py @@ -719,7 +719,7 @@ class CoverageDataFiles(object): raise CoverageException("No data to combine") for f in files_to_combine: - new_data = CoverageData() + new_data = CoverageData(debug=self.debug) try: new_data.read_file(f) except CoverageException as exc: |