Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

generalize args in do logout func #405

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion djangosaml2/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ def post(self, request, *args, **kwargs):
request, request.POST, saml2.BINDING_HTTP_POST, *args, **kwargs
)

def do_logout_service(self, request, data, binding):
def do_logout_service(self, request, data, binding, *args, **kwargs):
logger.debug("Logout service started")

state, client = self.get_state_client(request)
Expand Down
Loading