diff options
Diffstat (limited to 'Lib/packaging/tests/test_database.py')
-rw-r--r-- | Lib/packaging/tests/test_database.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/packaging/tests/test_database.py b/Lib/packaging/tests/test_database.py index c8d9415..251181a 100644 --- a/Lib/packaging/tests/test_database.py +++ b/Lib/packaging/tests/test_database.py @@ -133,7 +133,7 @@ class TestDistribution(CommonDistributionTests, unittest.TestCase): def tearDown(self): for distinfo_dir in self.dirs: record_file = os.path.join(distinfo_dir, 'RECORD') - open(record_file, 'w').close() + open(record_file, 'wb').close() super(TestDistribution, self).tearDown() def test_instantiation(self): |