From e25f313d7cc0f80fddde1a3c28251fe71d111219 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 17 Feb 2016 14:49:47 +0530 Subject: [PATCH] Do not show last modified in CS book details --- src/pyj/book_list/book_details.pyj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyj/book_list/book_details.pyj b/src/pyj/book_list/book_details.pyj index 51c5215f8e..6d668ef451 100644 --- a/src/pyj/book_list/book_details.pyj +++ b/src/pyj/book_list/book_details.pyj @@ -35,7 +35,7 @@ def get_preferred_format(metadata, output_format, input_formats): break return fmt.toUpperCase() -IGNORED_FIELDS = {'title', 'id', 'urls_from_identifiers', 'lang_names'} +IGNORED_FIELDS = {'title', 'id', 'urls_from_identifiers', 'lang_names', 'last_modified'} def allowed_fields(field): if str.endswith(field, '_index'):