Skip to content

Commit

Permalink
Fix bus in argument ordering when applying for a role.
Browse files Browse the repository at this point in the history
  • Loading branch information
amanning9 committed Mar 26, 2024
1 parent 375228a commit 3050bb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jasmin_services/views/role_apply.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def setup(self, request, *args, **kwargs):
return

# Get the previous request or grant, if it is supplies.
error, self.previous_request, self.previous_grant = self.get_previous_request_and_grant(
error, self.previous_grant, self.previous_request = self.get_previous_request_and_grant(
kwargs.get("bool_grant", None), kwargs.get("previous", None)
)
if error is not None:
Expand Down

0 comments on commit 3050bb0

Please sign in to comment.