From 6541318e5a37d03eb8879dfe4db63affeb17f07b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 18 Nov 2024 21:39:54 +0530 Subject: [PATCH] string changes --- src/calibre/utils/formatter_functions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/utils/formatter_functions.py b/src/calibre/utils/formatter_functions.py index aee5957e2822..8f35ea712747 100644 --- a/src/calibre/utils/formatter_functions.py +++ b/src/calibre/utils/formatter_functions.py @@ -1179,9 +1179,9 @@ class BuiltinSelect(BuiltinFormatterFunction): __doc__ = doc = _( r''' ``select(value, key)`` -- interpret the ``value`` as a comma-separated list of items with -each item having the form ``id:value`` (the calibre ``identifier`` format). The +each item having the form ``id:id_value`` (the calibre ``identifier`` format). The function finds the first pair with the id equal to ``key`` and returns the -corresponding ``value``. If no id matches then the function returns the empty +corresponding ``id_value``. If no id matches then the function returns the empty string. ''')