Skip to content

Commit

Permalink
Fix acoustic_corpus.py corpus error logging crash
Browse files Browse the repository at this point in the history
  • Loading branch information
iiixyn authored Jan 12, 2025
1 parent dc4e75b commit 3be068a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion montreal_forced_aligner/corpus/acoustic_corpus.py
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,7 @@ def _load_corpus_from_source_mp(self) -> None:
for e in error_dict[k]:
logger.debug(f"{e.file_name}: {e.error}")
else:
logger.debug(", ".join(error_dict[k]))
logger.debug(", ".join(str(error_dict[k])))
setattr(self, k, error_dict[k])

except Exception as e:
Expand Down

0 comments on commit 3be068a

Please sign in to comment.