From 7ee36fad8a9461ebc594b5e8899f5164495993af Mon Sep 17 00:00:00 2001 From: Leigh Morresi <275001+dgtlmoon@users.noreply.github.com> Date: Fri, 29 Jan 2021 17:51:40 +0100 Subject: [PATCH] Change message text --- backend/backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/backend.py b/backend/backend.py index 417c5eaf..22c72d5a 100644 --- a/backend/backend.py +++ b/backend/backend.py @@ -161,7 +161,7 @@ def api_watch_add(): # @todo add_watch should throw a custom Exception for validation etc datastore.add_watch(url=request.form.get('url').strip(), tag=request.form.get('tag').strip()) - messages.append({'class': 'ok', 'message': 'Saved'}) + messages.append({'class': 'ok', 'message': 'Watch added.'}) launch_checks() return redirect(url_for('main_page'))