Edit Book: Check Book: Fix automatic fixing of unsafe ids not working if the file containing the unsafe also needs to be fixed for an unsafe filename. Fixes #1491728 [Private bug](https://bugs.launchpad.net/calibre/+bug/1491728)

This commit is contained in:
Kovid Goyal 2015-09-03 15:42:54 +05:30
parent b4832aa9e8
commit 8fbbb485cd

View File

@ -74,8 +74,8 @@ def run_checks(container):
errors += check_mimetypes(container) errors += check_mimetypes(container)
errors += check_links(container) + check_link_destinations(container) errors += check_links(container) + check_link_destinations(container)
errors += check_fonts(container) errors += check_fonts(container)
errors += check_filenames(container)
errors += check_ids(container) errors += check_ids(container)
errors += check_filenames(container)
errors += check_markup(container) errors += check_markup(container)
errors += check_opf(container) errors += check_opf(container)