Skip to content

Commit

Permalink
Merge pull request #652 from mwhudson/release-tweaks
Browse files Browse the repository at this point in the history
Release tweaks
  • Loading branch information
mwhudson authored Mar 16, 2020
2 parents 828febd + 7596e63 commit 26e1867
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion subiquity/controllers/installprogress.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ async def stop_uu(self):
'chroot', '/target',
'/usr/share/unattended-upgrades/unattended-upgrade-shutdown',
'--stop-only',
], check=True))
]), check=True)

@install_step("copying logs to installed system")
async def copy_logs_to_target(self, context):
Expand Down
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 26e1867

Please sign in to comment.