From 329c13625c8d3d960c396911b4d1cf7e2c730f31 Mon Sep 17 00:00:00 2001 From: tcely Date: Thu, 8 May 2025 09:28:49 -0400 Subject: [PATCH] Add a missing error message --- tubesync/sync/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tubesync/sync/views.py b/tubesync/sync/views.py index 73fb3ddd..bdedb3fe 100644 --- a/tubesync/sync/views.py +++ b/tubesync/sync/views.py @@ -168,6 +168,7 @@ class ValidateSourceView(FormView): template_name = 'sync/source-validate.html' form_class = ValidateSourceForm errors = { + 'invalid_source': _('Invalid type for the source.'), 'invalid_url': _('Invalid URL, the URL must for a "{item}" must be in ' 'the format of "{example}". The error was: {error}.'), }