From cb15e40f70f215c3e90fe9381aeae30494502859 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 2 Aug 2017 04:15:54 -0400 Subject: [PATCH] Improve mailer URL regex. Signed-off-by: Roberto Rosario --- mayan/apps/mailer/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/mailer/urls.py b/mayan/apps/mailer/urls.py index 82a594a0fa..06d50780c0 100644 --- a/mayan/apps/mailer/urls.py +++ b/mayan/apps/mailer/urls.py @@ -31,7 +31,7 @@ urlpatterns = [ name='system_mailer_error_log' ), url( - r'^user_mailers/backend/selection', + r'^user_mailers/backend/selection/$', UserMailerBackendSelectionView.as_view(), name='user_mailer_backend_selection' ),