prevent nonexistent files in collate hints
This commit is contained in:
parent
2ab99c9a4b
commit
01f5955844
|
@ -180,7 +180,7 @@ def collate(args):
|
|||
|
||||
if work_id in hint_map:
|
||||
hint = hint_map[work_id]
|
||||
entries = ls_ignore(hint) if hint.is_dir() else [hint]
|
||||
entries = [hint] if hint.is_file() else ls_ignore(hint)
|
||||
else:
|
||||
search_dir = work_path
|
||||
while True:
|
||||
|
|
Loading…
Reference in a new issue