diff options
author | Alex Peters <alex@peters.net> | 2022-06-16 13:36:59 +1000 |
---|---|---|
committer | Alex Peters <alex@peters.net> | 2022-06-16 13:36:59 +1000 |
commit | 39e5edde9c92b959387a4b6096331cf6eeb1d70e (patch) | |
tree | 03d72cdbe952a79f80bb6458f62edcba27e4a6a7 | |
parent | e8d6318e93fecacebca41b2013622b374bd2ad34 (diff) | |
download | pelican-39e5edde9c92b959387a4b6096331cf6eeb1d70e.tar.gz |
Describe all `CHECK_MODIFIED_METHOD` options
Fixes #2991.
-rw-r--r-- | docs/settings.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/settings.rst b/docs/settings.rst index 675e6b8f..e51c6a12 100644 --- a/docs/settings.rst +++ b/docs/settings.rst @@ -350,6 +350,11 @@ Basic settings Controls how files are checked for modifications. + - If set to ``'mtime'``, the modification time of the file is + checked. + - If set to a name of a function provided by the ``hashlib`` + module, e.g. ``'md5'``, the file hash is checked. + .. data:: LOAD_CONTENT_CACHE = False If ``True``, load unmodified content from caches. |