Merge pull request #1291 from ogayot/fix-back

storage: fix crash when coming back from FS screen
This commit is contained in:
Olivier Gayot 2022-05-05 09:44:25 +02:00 committed by GitHub
commit 829dc32f42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ class FilesystemController(SubiquityTuiController, FilesystemManipulator):
self.app.aio_loop.create_task(self._guided_choice(choice))
async def _guided(self):
self.ui.set_body(await self.make_ui())
self.ui.set_body((await self.make_ui())())
def guided(self):
self.app.aio_loop.create_task(self._guided())