mirror of
ssh://git.janware.com/janware/proj/jw-pkg
synced 2026-04-24 17:23:36 +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:
|
log_prefix='|', throw=throw, verbose=verbose) as cc:
|
||||||
try:
|
try:
|
||||||
ret = await self._run(
|
ret = await self._run(
|
||||||
cmd=cc.cmd,
|
cmd = cc.cmd,
|
||||||
wd=wd,
|
wd = wd,
|
||||||
verbose=cc.verbose,
|
verbose = cc.verbose,
|
||||||
cmd_input=cc.cmd_input,
|
cmd_input = cc.cmd_input,
|
||||||
mod_env=cc.mod_env,
|
mod_env = cc.mod_env,
|
||||||
interactive=cc.interactive,
|
interactive = cc.interactive,
|
||||||
log_prefix=cc.log_prefix
|
log_prefix = cc.log_prefix
|
||||||
)
|
)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
return cc.exception(ret, e)
|
return cc.exception(ret, e)
|
||||||
|
|
@ -427,13 +427,13 @@ class ExecContext(Base):
|
||||||
log_prefix='|', throw=throw, verbose=verbose) as cc:
|
log_prefix='|', throw=throw, verbose=verbose) as cc:
|
||||||
try:
|
try:
|
||||||
ret = await self._run(
|
ret = await self._run(
|
||||||
cmd=cc.cmd,
|
cmd = cc.cmd,
|
||||||
wd=wd,
|
wd = wd,
|
||||||
verbose=cc.verbose,
|
verbose = cc.verbose,
|
||||||
cmd_input=cc.cmd_input,
|
cmd_input = cc.cmd_input,
|
||||||
mod_env=cc.mod_env,
|
mod_env = cc.mod_env,
|
||||||
interactive=cc.interactive,
|
interactive = cc.interactive,
|
||||||
log_prefix=cc.log_prefix
|
log_prefix = cc.log_prefix
|
||||||
)
|
)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
return cc.exception(ret, e)
|
return cc.exception(ret, e)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue