From 491c37214972509c1ab98ec0ea7c178f4112be9d Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 5 Jul 2022 19:14:57 +0100 Subject: [PATCH] Typo --- content.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content.py b/content.py index 23d2285a4..57ccefdc9 100644 --- a/content.py +++ b/content.py @@ -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('#'):