We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19ed481 commit d5fee35Copy full SHA for d5fee35
2 files changed
CHANGELOG.md
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
## [Unreleased]
8
### Changed
9
- Updated three tests to be less flakey and reflect new behavior regarding the model type.
10
+- Improved `NotFoundException` error message by removing the misleading "check server_url" suggestion.
11
12
### Security
13
- Updated dependencies to fix CVE-2025-66418 and CVE-2025-66471
deepl/translator.py
@@ -199,7 +199,7 @@ def _raise_for_status(
199
http_status_code=status_code,
200
)
201
raise DeepLException(
202
- f"Not found, check server_url{message}",
+ f"Not found{message}",
203
204
205
elif status_code == http.HTTPStatus.BAD_REQUEST:
0 commit comments