From 464aba492d2754fa1a0d5409908088d12d5f6544 Mon Sep 17 00:00:00 2001 From: George Dorn Date: Thu, 15 Sep 2011 14:57:39 -0700 Subject: [PATCH] Don't assume that the association_id (actually, user id) is a number. --- social_auth/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/social_auth/urls.py b/social_auth/urls.py index 17c2b76..e1bb193 100644 --- a/social_auth/urls.py +++ b/social_auth/urls.py @@ -12,6 +12,6 @@ urlpatterns = patterns('', url(r'^associate/complete/(?P[^/]+)/$', associate_complete, name='socialauth_associate_complete'), url(r'^disconnect/(?P[^/]+)/$', disconnect, name='socialauth_disconnect'), - url(r'^disconnect/(?P[^/]+)/(?P\d+)/$', disconnect, + url(r'^disconnect/(?P[^/]+)/(?P[^/]+)/$', disconnect, name='socialauth_disconnect_individual'), ) -- 2.39.5