Skip to content

Commit

Permalink
Merge pull request omab#144 from georgedorn/patch-1
Browse files Browse the repository at this point in the history
Don't assume that the association_id (actually, user id) is a number.
  • Loading branch information
omab committed Sep 15, 2011
2 parents bdf7baf + 464aba4 commit 4733ce0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion social_auth/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
url(r'^associate/complete/(?P<backend>[^/]+)/$', associate_complete,
name='socialauth_associate_complete'),
url(r'^disconnect/(?P<backend>[^/]+)/$', disconnect, name='socialauth_disconnect'),
url(r'^disconnect/(?P<backend>[^/]+)/(?P<association_id>\d+)/$', disconnect,
url(r'^disconnect/(?P<backend>[^/]+)/(?P<association_id>[^/]+)/$', disconnect,
name='socialauth_disconnect_individual'),
)

0 comments on commit 4733ce0

Please sign in to comment.