From bbb3e66fcb5fdc6fe4f3251803d07f55cc1121f7 Mon Sep 17 00:00:00 2001 From: Grey Himmel Date: Thu, 28 Mar 2019 05:49:28 -0400 Subject: [PATCH] Update import_commands.py (#62) Cosmetic update, gives correct command to view members --- src/pluralkit/bot/commands/import_commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pluralkit/bot/commands/import_commands.py b/src/pluralkit/bot/commands/import_commands.py index 6481dadf..96083435 100644 --- a/src/pluralkit/bot/commands/import_commands.py +++ b/src/pluralkit/bot/commands/import_commands.py @@ -42,8 +42,8 @@ async def import_tupperbox(ctx: CommandContext): if len(result.tags) > 1: tag_note = "\n\nPluralKit's tags work on a per-system basis. Since your Tupperbox members have more than one unique tag, PluralKit has not imported the tags. Set your system tag manually with `pk;system tag `." - await ctx.reply_ok("Updated {} member{}, created {} member{}. Type `pk;system` to check!{}".format( + await ctx.reply_ok("Updated {} member{}, created {} member{}. Type `pk;system list` to check!{}".format( len(result.updated), "s" if len(result.updated) != 1 else "", len(result.created), "s" if len(result.created) != 1 else "", tag_note - )) \ No newline at end of file + ))