From 3c4d2391856ac4e5e8447b806f75fc84cb6a3edf Mon Sep 17 00:00:00 2001 From: James Broadhead Date: Mon, 5 Dec 2016 11:48:32 +0000 Subject: [PATCH] bugfix: pass opts to print*check_library* --- src/calibre/library/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/library/cli.py b/src/calibre/library/cli.py index ca89c6fa1f..e80766b775 100644 --- a/src/calibre/library/cli.py +++ b/src/calibre/library/cli.py @@ -1371,7 +1371,7 @@ def command_check_library(args, dbpath): checker = CheckLibrary(dbpath, db) checker.scan_library(names, exts) for check in checks: - _print_check_library_results(checker, check) + _print_check_library_results(checker, check, opts) def _print_check_library_results(checker, check, opts):