Skip to content

Commit

Permalink
pass **kw args to arun_command in run_command_in_foreground
Browse files Browse the repository at this point in the history
this makes the debug shell run in / rather than /snap/subiquity/whatever
  • Loading branch information
mwhudson committed Mar 16, 2020
1 parent 1137410 commit 7596e63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subiquitycore/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ def run_command_in_foreground(self, cmd, before_hook=None, after_hook=None,

async def _run():
await arun_command(
cmd, stdin=None, stdout=None, stderr=None)
cmd, stdin=None, stdout=None, stderr=None, **kw)
screen.start()
urwid.emit_signal(
screen, urwid.display_common.INPUT_DESCRIPTORS_CHANGED)
Expand Down

0 comments on commit 7596e63

Please sign in to comment.