bugfix: pass opts to print*check_library*

This commit is contained in:
James Broadhead 2016-12-05 11:48:32 +00:00
parent a6093e8cac
commit 3c4d239185

View File

@ -1371,7 +1371,7 @@ def command_check_library(args, dbpath):
checker = CheckLibrary(dbpath, db) checker = CheckLibrary(dbpath, db)
checker.scan_library(names, exts) checker.scan_library(names, exts)
for check in checks: 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): def _print_check_library_results(checker, check, opts):