From 303e5217d3947894c141cbabbc067f75847d532f Mon Sep 17 00:00:00 2001 From: Serghei MIHAI Date: Mon, 24 Nov 2014 19:47:33 +0100 Subject: [PATCH] missing slash added to mellon urls --- hobo/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hobo/urls.py b/hobo/urls.py index cad970a..79e0faa 100644 --- a/hobo/urls.py +++ b/hobo/urls.py @@ -22,5 +22,5 @@ urlpatterns = patterns('', if 'mellon' in settings.INSTALLED_APPS: urlpatterns += patterns('', - url(r'^accounts/mellon', include('mellon.urls')), + url(r'^accounts/mellon/', include('mellon.urls')), )