diff --git a/wani.py b/wani.py index 8ec18d1..f5d89a6 100644 --- a/wani.py +++ b/wani.py @@ -873,7 +873,7 @@ class Writer: return [word.id, word.text, word.lemma, word.msd] else: assert(word.representation is not None) - failed = "ok" if word.representation_failed else "lemma_fallback" + failed = "lemma_fallback" if word.representation_failed else "ok" return [word.lemma, word.representation, failed] def sorted_rows(self, rows):