mirror: add missing await

This commit is contained in:
Dan Bungert 2022-01-13 10:59:22 -07:00
parent 4a672e071e
commit 94eab6fc84
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ class MirrorController(SubiquityController):
async def _apply_apt_config(self):
if self.apt_configurer is not None:
self.apt_configurer.cleanup()
await self.apt_configurer.cleanup()
self.apt_configurer = get_apt_configurer(
self.app, self.app.controllers.Source.source_path)
await self.apt_configurer.apply_apt_config(self.context)