Properly await uninstall

This commit is contained in:
TrainDoctor
2022-07-02 15:59:15 -07:00
parent 630e8b7213
commit 683c51ceac
+1 -1
View File
@@ -66,7 +66,7 @@ class PluginBrowser:
return web.Response(text="Requested plugin uninstall") return web.Response(text="Requested plugin uninstall")
async def _install(self, artifact, name, version, hash): async def _install(self, artifact, name, version, hash):
self.uninstall_plugin(name) await self.uninstall_plugin(name)
self.log.info(f"Installing {name} (Version: {version})") self.log.info(f"Installing {name} (Version: {version})")
async with ClientSession() as client: async with ClientSession() as client:
self.log.debug(f"Fetching {artifact}") self.log.debug(f"Fetching {artifact}")