From 80e8f9ca4d4f85273bc2a5c5c0d6851e7668f329 Mon Sep 17 00:00:00 2001 From: Mr McClain Date: Wed, 24 Feb 2016 12:06:55 -0600 Subject: [PATCH] Update url schema --- alliance_auth/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alliance_auth/urls.py b/alliance_auth/urls.py index 6f08c93f..4d812dea 100755 --- a/alliance_auth/urls.py +++ b/alliance_auth/urls.py @@ -189,5 +189,5 @@ urlpatterns = patterns('', # Notifications url(r'^notifications/$', 'notifications.views.notification_list', name='auth_notification_list'), url(r'^notifications/(\w+)/$', 'notifications.views.notification_view', name='auth_notification_view'), - url(r'^remove_notifications/(\w+)', 'notifications.views.remove_notification', name='auth_remove_notification'), + url(r'^remove_notifications/(\w+)/$', 'notifications.views.remove_notification', name='auth_remove_notification'), )