From bf75dff3385b4342fa1e767e0cd5efb6f24d8fd7 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 17 Feb 2022 11:53:29 -0800 Subject: [PATCH] Contextualize admin code command output --- bookwyrm/management/commands/admin_code.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bookwyrm/management/commands/admin_code.py b/bookwyrm/management/commands/admin_code.py index edb8673dd..ee69b78cb 100644 --- a/bookwyrm/management/commands/admin_code.py +++ b/bookwyrm/management/commands/admin_code.py @@ -17,4 +17,7 @@ class Command(BaseCommand): # pylint: disable=unused-argument def handle(self, *args, **options): """execute init""" + self.stdout.write("*******************************************") + self.stdout.write("Use this code to create your admin account:") self.stdout.write(get_admin_code()) + self.stdout.write("*******************************************")