From 60a9a786e09bee0191801198a29da514b9dcde7c Mon Sep 17 00:00:00 2001 From: Tim Loderhose Date: Sun, 13 Mar 2022 10:55:37 +0100 Subject: [PATCH] Fix typo in settings form --- changedetectionio/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/forms.py b/changedetectionio/forms.py index 59bb800c..df5d6336 100644 --- a/changedetectionio/forms.py +++ b/changedetectionio/forms.py @@ -350,6 +350,6 @@ class globalSettingsForm(commonSettingsForm): [validators.NumberRange(min=1)]) extract_title_as_title = BooleanField('Extract from document and use as watch title') base_url = StringField('Base URL', validators=[validators.Optional()]) - global_subtractive_selectors = StringListField('Ignore elements', [ValidateCSSJSONXPATHInput(allow_xpath=False, allow_json=False)]) + global_subtractive_selectors = StringListField('Remove elements', [ValidateCSSJSONXPATHInput(allow_xpath=False, allow_json=False)]) global_ignore_text = StringListField('Ignore Text', [ValidateListRegex()]) ignore_whitespace = BooleanField('Ignore whitespace')