Skip to content

Commit 10d2d7e

Browse files
committed
Fixed a bug when displaying errors while checking the organization metadata.
1 parent 3b9b34b commit 10d2d7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

snet/cli/commands/commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ def _metadata_validate(self, as_exception=True):
611611
if validation_res["status"] == 0:
612612
res_msg = "\nErrors found in the metadata file:\n" + res_msg
613613
else:
614-
res_msg += validation_res["msg"] + res_msg
614+
res_msg = validation_res["msg"] + res_msg
615615
res_msg += hint_message
616616
elif validation_res["status"] == 0:
617617
res_msg = validation_res["msg"]

0 commit comments

Comments
 (0)