We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c4c56f commit 1933af2Copy full SHA for 1933af2
exec_helpers/async_api/api.py
@@ -383,7 +383,9 @@ async def check_stderr( # type: ignore
383
if result.stderr:
384
message = (
385
"{append}Command {result.cmd!r} output contains STDERR while not expected\n"
386
- "\texit code: {result.exit_code!s}".format(append=error_info + "\n" if error_info else "", result=result)
+ "\texit code: {result.exit_code!s}".format(
387
+ append=error_info + "\n" if error_info else "", result=result
388
+ )
389
)
390
self.logger.error(msg=message)
391
if raise_on_err:
0 commit comments