Skip to content

Commit 7f76454

Browse files
committed
Update CHANGELOG.md with fs._ftp_parse bugfix
1 parent bbaa041 commit 7f76454

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2525
test suites.
2626
- `FSTestCases` now builds the large data required for `upload` and `download` tests only
2727
once in order to reduce the total testing time.
28-
- `MemoryFS.move` and `MemoryFS.movedir` will now avoid copying data.
28+
- `MemoryFS.move` and `MemoryFS.movedir` will now avoid copying data.
2929
Closes [#452](https://github.com/PyFilesystem/pyfilesystem2/issues/452).
3030

3131
### Fixed
@@ -36,6 +36,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3636
- Avoid creating a new connection on every call of `FTPFS.upload`. Closes [#455](https://github.com/PyFilesystem/pyfilesystem2/issues/455).
3737
- `WrapReadOnly.removetree` not raising a `ResourceReadOnly` when called. Closes [#468](https://github.com/PyFilesystem/pyfilesystem2/issues/468).
3838
- `WrapCachedDir.isdir` and `WrapCachedDir.isfile` raising a `ResourceNotFound` error on non-existing path ([#470](https://github.com/PyFilesystem/pyfilesystem2/pull/470)).
39+
- `FTPFS` not listing certain entries with sticky/SUID/SGID permissions set by Linux server ([#473](https://github.com/PyFilesystem/pyfilesystem2/pull/473)).
40+
Closes [#451](https://github.com/PyFilesystem/pyfilesystem2/issues/451).
3941

4042

4143
## [2.4.12] - 2021-01-14

tests/test_ftp_parse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ def test_decode_linux_suid(self, mock_localtime):
285285
"ftp": {
286286
"ls": "-rw-r--r-- 1 ftp ftp 25 Mar 18 19:34 robots.txt"
287287
},
288-
}
288+
},
289289
]
290290

291291
parsed = ftp_parse.parse(directory.strip().splitlines())

0 commit comments

Comments
 (0)