mirror of
ssh://git.janware.com/janware/proj/jw-pkg
synced 2026-04-24 09:13:37 +02:00
lib.ExecContext: Code beautification
Add spaces around equal signs in long parameter lists. Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
54aecff8e4
commit
1359719f04
1 changed files with 14 additions and 14 deletions
|
|
@ -288,13 +288,13 @@ class ExecContext(Base):
|
|||
log_prefix='|', throw=throw, verbose=verbose) as cc:
|
||||
try:
|
||||
ret = await self._run(
|
||||
cmd=cc.cmd,
|
||||
wd=wd,
|
||||
verbose=cc.verbose,
|
||||
cmd_input=cc.cmd_input,
|
||||
mod_env=cc.mod_env,
|
||||
interactive=cc.interactive,
|
||||
log_prefix=cc.log_prefix
|
||||
cmd = cc.cmd,
|
||||
wd = wd,
|
||||
verbose = cc.verbose,
|
||||
cmd_input = cc.cmd_input,
|
||||
mod_env = cc.mod_env,
|
||||
interactive = cc.interactive,
|
||||
log_prefix = cc.log_prefix
|
||||
)
|
||||
except Exception as e:
|
||||
return cc.exception(ret, e)
|
||||
|
|
@ -427,13 +427,13 @@ class ExecContext(Base):
|
|||
log_prefix='|', throw=throw, verbose=verbose) as cc:
|
||||
try:
|
||||
ret = await self._run(
|
||||
cmd=cc.cmd,
|
||||
wd=wd,
|
||||
verbose=cc.verbose,
|
||||
cmd_input=cc.cmd_input,
|
||||
mod_env=cc.mod_env,
|
||||
interactive=cc.interactive,
|
||||
log_prefix=cc.log_prefix
|
||||
cmd = cc.cmd,
|
||||
wd = wd,
|
||||
verbose = cc.verbose,
|
||||
cmd_input = cc.cmd_input,
|
||||
mod_env = cc.mod_env,
|
||||
interactive = cc.interactive,
|
||||
log_prefix = cc.log_prefix
|
||||
)
|
||||
except Exception as e:
|
||||
return cc.exception(ret, e)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue