Skip to content
This repository has been archived by the owner on Jul 25, 2024. It is now read-only.

API: Fix typo in api script #176

Merged
merged 1 commit into from
Apr 25, 2024
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 squad_client/core/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,4 +156,4 @@ def __request__(method, endpoint, **kwargs):
except requests.exceptions.Timeout as e:
raise ApiException('Timeout Error: %s' % e)
except requests.exceptions.RequestException as e:
raise ApiException('OOps: Something unexpected happened while requesting the API: %s' % e)
raise ApiException('Oops: Something unexpected happened while requesting the API: %s' % e)
Loading