diff --git a/bookdir2pdf.py b/bookdir2pdf.py index d07a1d5..b23fdea 100644 --- a/bookdir2pdf.py +++ b/bookdir2pdf.py @@ -246,7 +246,9 @@ def dir_path(string): # Test if it should be ignored, and if so, fully ignore it if p_ext in ignored_file_exts: - print("Ignoring file: '{}'".format(p)) + if p_ext not in rename_exts: + # Don't print if it's a rename file (not really ignoring per-se) + print("Ignoring file: '{}'".format(p)) continue page_list.append(p)