From c006b42a4ae21c4bada0420bfe15534795df880c Mon Sep 17 00:00:00 2001 From: Charles Haley <> Date: Fri, 1 Oct 2010 18:36:46 +0100 Subject: [PATCH] Make the normals ignored again. --- src/calibre/library/check_library.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/library/check_library.py b/src/calibre/library/check_library.py index b0bcb98123..a6f3d40131 100644 --- a/src/calibre/library/check_library.py +++ b/src/calibre/library/check_library.py @@ -157,7 +157,7 @@ class CheckLibrary(object): self.missing_formats.append((title_dir, db_path, missing)) # Check: any book formats that shouldn't be there? - extra = formats - book_formats + extra = formats - book_formats - NORMALS if extra: self.extra_formats.append((title_dir, db_path, extra)) else: @@ -183,7 +183,7 @@ class CheckLibrary(object): lc_map(book_formats, missing))) # Check: any book formats that shouldn't be there? - extra = formats_lc - book_formats_lc + extra = formats_lc - book_formats_lc - NORMALS if extra: self.extra_formats.append((title_dir, db_path, lc_map(formats, extra)))