Skip to content

Commit

Permalink
Additional params to complete view
Browse files Browse the repository at this point in the history
  • Loading branch information
omab committed Sep 16, 2011
1 parent d74cc1a commit 559ac2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions social_auth/views.py
Expand Up @@ -88,10 +88,10 @@ def auth(request, backend):

@csrf_exempt
@dsa_view()
def complete(request, backend):
def complete(request, backend, *args, **kwargs):
"""Authentication complete view, override this view if transaction
management doesn't suit your needs."""
return complete_process(request, backend)
return complete_process(request, backend, *args, **kwargs)


@login_required
Expand Down

0 comments on commit 559ac2c

Please sign in to comment.