diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e99014c..d442f284 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,8 +8,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Added +- Typing information - Added ext attribute to info +### Fixed + +- Fixed issue with implied directories in TarFS + ## [2.0.20] - 2018-03-13 ### Fixed diff --git a/tests/test_info.py b/tests/test_info.py index 5852728a..8bb1fc96 100644 --- a/tests/test_info.py +++ b/tests/test_info.py @@ -134,6 +134,6 @@ def test_copy(self): self.assertEqual(info.raw, info_copy.raw) def test_get(self): - info = Info({'baz':{}}) + info = Info({'baz': {}}) self.assertIsNone(info.get('foo', 'bar')) self.assertIsNone(info.get('baz', 'bar'))