diff options
-rwxr-xr-x | util/lint/checkpatch_json.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/lint/checkpatch_json.py b/util/lint/checkpatch_json.py index 341bc57733..967e898817 100755 --- a/util/lint/checkpatch_json.py +++ b/util/lint/checkpatch_json.py @@ -24,8 +24,8 @@ def update_struct( file_path, msg_output, line_number): "robot_run_id" : sys.argv[3], "url" : sys.argv[4], "line" : line_number, - "message" : msg_output,} - ) + "message" : "`" + msg_output + "`", + }) def parse_file(input_file): fp = open (input_file, "r") |