Skip to content
Snippets Groups Projects
Commit 2790200b authored by Frederic Aust's avatar Frederic Aust
Browse files

Bugfix: Vergleich von key und value muss beides lower sein

parent 3d6e3899
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ class ModuleGenderneutral:
key_original = td.text.strip()
key = td.text.strip().lower()
if key == value:
if key == value.lower():
continue
if key[0:3] == "...":
continue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment