Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions src/osekit/public_api/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,8 +394,8 @@ def run_analysis(
"""
if analysis.name in self.analyses:
message = (
f"Analysis {analysis.name} already exists."
f"Please choose a different name,"
f"Analysis {analysis.name} already exists. "
f"Please choose a different name, "
f"or delete it with the Dataset.delete_analysis() method."
)
raise ValueError(message)
Expand Down
2 changes: 1 addition & 1 deletion src/osekit/utils/core_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def change_owner_group(path: Path, owner_group: str) -> None:
os.chown(path, -1, gid)
except PermissionError as e:
message = (
f"You do not have the permission to change the owner of {path}."
f"You do not have the permission to change the owner of {path}. "
f"The group owner has not been changed "
f"from {path.group()} to {owner_group}."
)
Expand Down