Skip to content

Commit

Permalink
WIP: missing brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaso committed Mar 30, 2024
1 parent 5cb7293 commit a1e7e34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vault_oidc_ssh_cert_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def _issue_vault_token(
response = requests.post(login_url, data=payload, timeout=10)
response.raise_for_status()
except requests.exceptions.RequestException as request_error:
message = f"{type(request_error).__name__}: str(request_error)"
message = f"{type(request_error).__name__}: {str(request_error)}"
_set_error_message("Vault login error", message)
raise VoscaError from request_error

Expand Down

0 comments on commit a1e7e34

Please sign in to comment.