From bb60bba3a9f7c1ff0e4af50682b84c22d9db0e0f Mon Sep 17 00:00:00 2001 From: Charles Haley <> Date: Fri, 1 Oct 2010 18:10:00 +0100 Subject: [PATCH] Ignore metadata.db file --- src/calibre/library/check_library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/library/check_library.py b/src/calibre/library/check_library.py index 7271491f47..d0c8c640d2 100644 --- a/src/calibre/library/check_library.py +++ b/src/calibre/library/check_library.py @@ -74,7 +74,7 @@ class CheckLibrary(object): lib = self.src_library_path for auth_dir in os.listdir(lib): - if auth_dir in self.ignore_names: + if auth_dir in self.ignore_names or auth_dir == 'metadata.db': continue auth_path = os.path.join(lib, auth_dir) # First check: author must be a directory