Skip to content

Commit

Permalink
fix codestyle
Browse files Browse the repository at this point in the history
Signed-off-by: Aleksei Stepanov <penguinolog@gmail.com>
  • Loading branch information
penguinolog committed Mar 11, 2019
1 parent 1c4c56f commit 1933af2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion exec_helpers/async_api/api.py
Expand Up @@ -383,7 +383,9 @@ async def check_stderr( # type: ignore
if result.stderr:
message = (
"{append}Command {result.cmd!r} output contains STDERR while not expected\n"
"\texit code: {result.exit_code!s}".format(append=error_info + "\n" if error_info else "", result=result)
"\texit code: {result.exit_code!s}".format(
append=error_info + "\n" if error_info else "", result=result
)
)
self.logger.error(msg=message)
if raise_on_err:
Expand Down

0 comments on commit 1933af2

Please sign in to comment.