Skip to content

Commit 25f3eef

Browse files
Minor comment correction.
1 parent e81063a commit 25f3eef

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELOG.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Change Log
22

33
- 0.9.25:
4-
- Improvements to project config (`pyproject.toml`) with `hatch`. Thanks @stumpylog.
5-
- Fixes [#66](https://github.com/Preston-Landers/concurrent-log-handler/issues/66)
4+
- Improvements to project config (`pyproject.toml`) with `hatch` (PR #65), and the addition of
5+
Python typing hints (PR #69). Thanks @stumpylog.
6+
- Fixes [Issue #66](https://github.com/Preston-Landers/concurrent-log-handler/issues/66)
67
Timed mode rollover fails if backupCount limit is hit and gzip is on. Thanks @moynihan.
7-
- Fixes [#60](https://github.com/Preston-Landers/concurrent-log-handler/issues/60)
8+
- Fixes [Issue #60](https://github.com/Preston-Landers/concurrent-log-handler/issues/60)
89
Timed mode causes DeprecationWarning if you don't give the `delay` parameter. Thanks @platinops.
910

1011
- 0.9.24:

src/concurrent_log_handler/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,7 @@ def getFilesToDelete(self) -> List[str]:
874874
as when hitting a size limit before the time limit.
875875
"""
876876

877-
# If Python > 3.9, then use the superclass method.
877+
# If Python is 3.9 or later, then use the superclass method.
878878
if sys.version_info >= (3, 9):
879879
return super().getFilesToDelete()
880880

0 commit comments

Comments
 (0)