From 60d0f43a6263a3497974f11427f531476bd3c1b8 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 12 Nov 2024 20:42:03 +0530 Subject: [PATCH] Fix incorrect ref syntax in one place --- src/calibre/utils/formatter_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/utils/formatter_functions.py b/src/calibre/utils/formatter_functions.py index e2e637ffd9..91cd159c65 100644 --- a/src/calibre/utils/formatter_functions.py +++ b/src/calibre/utils/formatter_functions.py @@ -2970,7 +2970,7 @@ r''' ``extra_file_modtime(file_name, format_string)`` -- returns the modification time of the extra file ``file_name`` in the book's ``data/`` folder if it exists, otherwise ``-1``. The modtime is formatted according to -``format_string`` (see :ref:`format_date()` for details). If ``format_string`` is +``format_string`` (see :ref:`format_date` for details). If ``format_string`` is the empty string, returns the modtime as the floating point number of seconds since the epoch. See also the functions :ref:`has_extra_files`, :ref:`extra_file_names` and :ref:`extra_file_size`. The epoch is OS dependent.