Skip to content

Commit

Permalink
Fixed a bug when displaying errors while checking the organization me…
Browse files Browse the repository at this point in the history
…tadata.
  • Loading branch information
Arondondon committed Nov 13, 2024
1 parent 3b9b34b commit 10d2d7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snet/cli/commands/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ def _metadata_validate(self, as_exception=True):
if validation_res["status"] == 0:
res_msg = "\nErrors found in the metadata file:\n" + res_msg
else:
res_msg += validation_res["msg"] + res_msg
res_msg = validation_res["msg"] + res_msg
res_msg += hint_message
elif validation_res["status"] == 0:
res_msg = validation_res["msg"]
Expand Down

0 comments on commit 10d2d7e

Please sign in to comment.