fix: wrong check for candidates faulty flag

This commit is contained in:
Robert Kaussow 2021-01-19 22:33:30 +01:00
parent d7d50ead10
commit b560222281
Signed by: xoxys
GPG Key ID: 65362AE74AF98B61
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ def get_normalized_tasks(candidate, settings, full=False):
normalized = []
errors = []
if candidate.faulty:
if not candidate.faulty:
try:
with codecs.open(candidate.path, mode="rb", encoding="utf-8") as f:
yamllines = parse_yaml_linenumbers(f, candidate.path)