Skip to content

Commit

Permalink
remove comma in error msg for csv file use
Browse files Browse the repository at this point in the history
  • Loading branch information
lowrank committed Oct 9, 2024
1 parent d4d9549 commit 3c6a511
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utility.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def execute_system_call(command, max_wait=30):
std_out, std_err = process.communicate(timeout=max_wait)
output = " ".join(re.findall('PASS|FAIL', std_out.strip()))
if std_err:
output += " {{Implementation Error}}@[" + std_err.strip().replace("\n","") + "]"
output += " {{Implementation Error}}@[" + std_err.strip().replace("\n","").replace(",", "") + "]"
return output
except (subprocess.TimeoutExpired, subprocess.CalledProcessError) as e:
if isinstance(e, subprocess.TimeoutExpired):
Expand Down

0 comments on commit 3c6a511

Please sign in to comment.