Skip to content

Commit

Permalink
Fixes the issue in EndpointExceptionError by changing the format of t…
Browse files Browse the repository at this point in the history
…he error message (boto#3296)
  • Loading branch information
ubaskota authored and hswong3i committed Nov 7, 2024
1 parent 9cca3cf commit f2e2e98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion botocore/endpoint_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ def process_input(self, value):
return self.default
if self.required:
raise EndpointResolutionError(
f"Cannot find value for required parameter {self.name}"
msg=f"Cannot find value for required parameter {self.name}"
)
# in all other cases, the parameter will keep the value None
else:
Expand Down

0 comments on commit f2e2e98

Please sign in to comment.