diff --git a/scripts/csv_vocab_to_mongo.py b/scripts/csv_vocab_to_mongo.py index ebe0805..ac80588 100644 --- a/scripts/csv_vocab_to_mongo.py +++ b/scripts/csv_vocab_to_mongo.py @@ -15,7 +15,7 @@ def preprocess_row(row): def genus_to_datatype(gen): if (gen == "m"): return "Maskulin" - if (gen == "w"): return "Feminin" + if (gen == "f"): return "Feminin" if (gen == "n"): return "Neutrum" def log(msg, err=False, tabs=0):