Skip to content

Commit

Permalink
fix: Typos in ConnectionError message
Browse files Browse the repository at this point in the history
  • Loading branch information
tlukkezen authored Jun 25, 2024
1 parent ec5e99f commit 40ea341
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nuclei/client/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ def _get_app_specification(self, app: str) -> dict:
)
if response.status_code != 200:
raise ConnectionError(
"Unfortunately the application you are trying to reaches is unavailable (status code: "
f"{response.status_code}). Please check you connection. If the problem persist contact "
"Unfortunately the application you are trying to reach is unavailable (status code: "
f"{response.status_code}). Please check you connection. If the problem persists contact "
"CEMS at [email protected]"
)
return response.json()
Expand Down

0 comments on commit 40ea341

Please sign in to comment.