Skip to content

Commit

Permalink
fix: typo in exception (#377)
Browse files Browse the repository at this point in the history
Signed-off-by: Olivier Léobal <[email protected]>
  • Loading branch information
oleobal authored Aug 1, 2023
1 parent 0c077c5 commit 7a2a7f0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `wait_completion` param on `get_performances`, `list_task_output_assets` and `get_task_output_asset` to block execution until execution is over ([#368](https://github.com/Substra/substra/pull/368))
- `list_task_output_assets` and `get_task_output_asset` wait that the compute task is over before getting assets ([#369](https://github.com/Substra/substra/pull/369))

### Fixed

- typo in exception ([#377](https://github.com/Substra/substra/pull/377))

## [0.46.0](https://github.com/Substra/substra/releases/tag/0.46.0) - 2023-07-25

### Added
Expand Down
2 changes: 1 addition & 1 deletion substra/sdk/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def extract_files(data, file_attributes):
files = {}
for k, f in paths.items():
if not os.path.exists(f):
raise exceptions.LoadDataException(f"The '{k}' attribute file ({f}) does not exit.")
raise exceptions.LoadDataException(f"The '{k}' attribute file ({f}) does not exist.")
files[k] = open(f, "rb")

try:
Expand Down

0 comments on commit 7a2a7f0

Please sign in to comment.