Skip to content

Commit

Permalink
Updated logging command
Browse files Browse the repository at this point in the history
  • Loading branch information
SimplisticCode committed Dec 11, 2023
1 parent 3f6a0ce commit 2216117
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external_tester/maestro_cli_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def cliGenerateAlgorithmFromMultiModel():
with open(multiModelPath, "w+") as jsonFile:
json.dump(multiModel, jsonFile)

print("Multi model file content: " + multiModel)
print("Multi model file content: " + str(multiModel))

cmd = "java -jar {0} sigver generate-algorithm {1} -output {2}".format(path, multiModelPath, temporary)
func = lambda: print("Succesfully generated algorithm from multi model") if(os.path.exists(os.path.join(temporary, "algorithm.conf"))) else lambda: (Exception("Algorithm was not returned"))
Expand Down

0 comments on commit 2216117

Please sign in to comment.