merge-requests/30/head
Bob Mottram 2022-07-05 19:14:57 +01:00
parent b4cf3c2b1a
commit 491c372149
1 changed files with 1 additions and 1 deletions

View File

@ -1100,7 +1100,7 @@ def load_dogwhistles(filename: str) -> {}:
separators = ('->', '=>', ',', ';', '|', '=')
dogwhistles = {}
for line in dogwhistle_lines:
line = line.remove_eol(line).strip()
line = remove_eol(line).strip()
if not line:
continue
if line.startswith('#'):