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 0fb12c6b..eb8e776d 100644 --- a/coverage/data.py +++ b/coverage/data.py @@ -111,7 +111,7 @@ class CoverageData: # Write the pickle to the file. fdata = open(filename, 'wb') try: - pickle.dump(data, fdata) + pickle.dump(data, fdata, 2) finally: fdata.close() |