From 06f6cef6dcc6a043fdb6b16dd5ad746cfaff41a0 Mon Sep 17 00:00:00 2001 From: lza_menace Date: Tue, 4 Jan 2022 22:32:43 -0800 Subject: [PATCH] fix string --- suchwowx/routes/meta.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suchwowx/routes/meta.py b/suchwowx/routes/meta.py index b9f2361..20053e7 100644 --- a/suchwowx/routes/meta.py +++ b/suchwowx/routes/meta.py @@ -46,7 +46,7 @@ def remotes(): else: flash('That remote server already exists.', 'warning') else: - flash('Incorrect endpoint provided, must start with http or https', 'warning') # noqa + flash('Incorrect endpoint provided, must start with http or https.', 'warning') # noqa return render_template('remotes.html', remotes=remotes)