From e9a314a0c90ba18a54d06b0c42de0a62da354c12 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 28 Mar 2016 07:39:41 +0530 Subject: [PATCH] ... --- src/calibre/utils/formatter_functions.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/calibre/utils/formatter_functions.py b/src/calibre/utils/formatter_functions.py index 71db245235..2f50b24023 100644 --- a/src/calibre/utils/formatter_functions.py +++ b/src/calibre/utils/formatter_functions.py @@ -1072,7 +1072,9 @@ class BuiltinAnd(BuiltinFormatterFunction): __doc__ = doc = _('and(value, value, ...) -- ' 'returns the string "1" if all values are not empty, otherwise ' 'returns the empty string. This function works well with test or ' - 'first_non_empty. You can have as many values as you want.') + 'first_non_empty. You can have as many values as you want. ' + 'When more than one value is present it will return "1" only if ' + 'all the values are not empty.') def evaluate(self, formatter, kwargs, mi, locals, *args): i = 0