Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion ingit/runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,9 @@ def execute_command(self, cmd: str, timeout: t.Optional[int] = None):
try:
subprocess.run(cmd, check=True, timeout=timeout, shell=True, cwd=project.path)
except subprocess.TimeoutExpired:
_LOG.error('command "%s" in %s was aborted because it took too much time')
_LOG.error(
'command "%s" in %s was aborted because it took too much time',
cmd, project)
except subprocess.CalledProcessError as err:
_LOG.error(
'command "%s" failed in %s:\nstderr: %s\nstdout: %s',
Expand Down
Loading