Skip to content

Commit

Permalink
Apply change from review
Browse files Browse the repository at this point in the history
  • Loading branch information
giffels committed Nov 9, 2023
1 parent 387ece9 commit 2dc18c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tardis/utilities/executors/sshexecutor.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ async def run_command(self, command, stdin_input=None):
async with self.bounded_connection as ssh_connection:
try:
response = await ssh_connection.run(
command, check=True, input=stdin_input and stdin_input
command, check=True, input=stdin_input
)
except asyncssh.ProcessError as pe:
raise CommandExecutionFailure(
Expand Down

0 comments on commit 2dc18c0

Please sign in to comment.