Skip to content

Commit

Permalink
line length
Browse files Browse the repository at this point in the history
  • Loading branch information
wdpypere committed Oct 27, 2024
1 parent 992bbba commit 5a3ff48
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/vsc/utils/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,10 @@ def _post_exitcode(self):
cmd_ascii = ensure_ascii_string(self.cmd)
if not self._process_exitcode == 0:
shell_cmd_ascii = ensure_ascii_string(self._shellcmd)
message = f"_post_exitcode: problem occured with cmd {cmd_ascii}: (shellcmd {shell_cmd_ascii}) output {self._process_ouput}"
message = (
f"_post_exitcode: problem occured with cmd {cmd_ascii}:"
f"(shellcmd {shell_cmd_ascii}) output {self._process_ouput}"
)
if self.post_exitcode:
self._post_exitcode_log_failure(message)
else:
Expand Down

0 comments on commit 5a3ff48

Please sign in to comment.