From 35f0ccc47a87fa679e05ababee60e9fd075a79bf Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Fri, 24 Nov 2023 17:53:28 -0600 Subject: [PATCH] Show `appname` when saying hello --- wutta_hello/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wutta_hello/commands.py b/wutta_hello/commands.py index bea66f3..a1e013f 100644 --- a/wutta_hello/commands.py +++ b/wutta_hello/commands.py @@ -17,4 +17,4 @@ class Hello(Subcommand): """ Displays a hello message for the user to see. """ - self.stdout.write("HELLO WORLD\n") + self.stdout.write(f"hello from {self.app.appname}\n")