From 01b55581a7499c341ef5a0a6359370148dd9a6b8 Mon Sep 17 00:00:00 2001 From: Charles Haley <> Date: Thu, 15 Mar 2012 07:20:50 +0100 Subject: [PATCH] Fix improper exclusion of "languages" from the new metadata 'process_first' set. --- src/calibre/ebooks/metadata/book/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/calibre/ebooks/metadata/book/__init__.py b/src/calibre/ebooks/metadata/book/__init__.py index b7ab91c26f..00bbc68f29 100644 --- a/src/calibre/ebooks/metadata/book/__init__.py +++ b/src/calibre/ebooks/metadata/book/__init__.py @@ -135,5 +135,4 @@ SERIALIZABLE_FIELDS = SOCIAL_METADATA_FIELDS.union( # A special set used to optimize the performance of Metadata.__setattr__ ATTR_NORMAL_FIELDS = frozenset(STANDARD_METADATA_FIELDS - TOP_LEVEL_IDENTIFIERS - - set('identifiers') - - set('languages')) + set('identifiers'))