From a9a9fb018e3b8b3349583264b67844ff6e14346b Mon Sep 17 00:00:00 2001 From: Ske Date: Fri, 7 Sep 2018 23:03:05 +0200 Subject: [PATCH] Fix Tupperware importing --- src/pluralkit/bot/commands/import_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pluralkit/bot/commands/import_commands.py b/src/pluralkit/bot/commands/import_commands.py index 8211b50c..3e26b630 100644 --- a/src/pluralkit/bot/commands/import_commands.py +++ b/src/pluralkit/bot/commands/import_commands.py @@ -98,7 +98,7 @@ async def import_tupperware(ctx: CommandContext): logger.debug("Importing from Tupperware...") # Create new (nameless) system if there isn't any registered - system = ctx.get_system() + system = await ctx.get_system() if system is None: hid = utils.generate_hid() logger.debug("Creating new system (hid={})...".format(hid))