Show appname when saying hello

This commit is contained in:
Lance Edgar 2023-11-24 17:53:28 -06:00
parent 954f255909
commit 35f0ccc47a

View file

@ -17,4 +17,4 @@ class Hello(Subcommand):
""" """
Displays a hello message for the user to see. 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")