Skip to content

Commit

Permalink
fix: fix function name in signing error message (#751)
Browse files Browse the repository at this point in the history
  • Loading branch information
akx committed May 18, 2021
1 parent b2c179e commit e9ca25f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google/auth/iam.py
Expand Up @@ -79,7 +79,7 @@ def _make_signing_request(self, message):

if response.status != http_client.OK:
raise exceptions.TransportError(
"Error calling the IAM signBytes API: {}".format(response.data)
"Error calling the IAM signBlob API: {}".format(response.data)
)

return json.loads(response.data.decode("utf-8"))
Expand Down

0 comments on commit e9ca25f

Please sign in to comment.