summaryrefslogtreecommitdiff
path: root/coverage/data.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/data.py')
-rw-r--r--coverage/data.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/data.py b/coverage/data.py
index 0fb12c6..eb8e776 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()