diff --git a/docs/source/config_reference/plugins.rst b/docs/source/config_reference/plugins.rst index 633de41b..97c88886 100644 --- a/docs/source/config_reference/plugins.rst +++ b/docs/source/config_reference/plugins.rst @@ -167,14 +167,14 @@ intended download files. :expected type: Optional[OverridesFormatter] :description: - Only download videos after this datetime. + Only download videos after or on this datetime, inclusive. ``before`` :expected type: Optional[OverridesFormatter] :description: - Only download videos before this datetime. + Only download videos only before this datetime, not inclusive. ``breaks`` diff --git a/src/ytdl_sub/plugins/date_range.py b/src/ytdl_sub/plugins/date_range.py index b7bf6dd0..478cf938 100644 --- a/src/ytdl_sub/plugins/date_range.py +++ b/src/ytdl_sub/plugins/date_range.py @@ -58,7 +58,7 @@ class DateRangeOptions(ToggleableOptionsDictValidator): """ :expected type: Optional[OverridesFormatter] :description: - Only download videos before this datetime. + Only download videos only before this datetime, not inclusive. """ return self._before @@ -67,7 +67,7 @@ class DateRangeOptions(ToggleableOptionsDictValidator): """ :expected type: Optional[OverridesFormatter] :description: - Only download videos after this datetime. + Only download videos after or on this datetime, inclusive. """ return self._after