Skip to content

Commit

Permalink
better formatting between project name and workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
ValentinBuira committed Jul 9, 2024
1 parent 07ea124 commit c28e94d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mergin/projects_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def create_project(self, project_name, project_dir, is_public, namespace):
msg = str(e)
# User friendly error messages
if e.http_error == 409:
msg = f"Project with the name {full_project_name} already exists\n Try renaming the project"
msg = f"Project with the name {project_name} already exists in the workspace {namespace}\n Try renaming the project"
if e.http_error == 422 and e.server_code == "ProjectsLimitHit":
msg = (
"Maximum number of projects is reached. Please upgrade your subscription to create new projects\n"
Expand Down

0 comments on commit c28e94d

Please sign in to comment.