From 6bd8219a9f09549f02a11a1801a167a3e3d04917 Mon Sep 17 00:00:00 2001 From: KKlochko Date: Wed, 13 Dec 2023 14:08:01 +0200 Subject: [PATCH] Update the exit message. --- notification_server/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notification_server/cli.py b/notification_server/cli.py index 523713a..79099f2 100644 --- a/notification_server/cli.py +++ b/notification_server/cli.py @@ -55,5 +55,5 @@ def up( asyncio.run(server.up()) except KeyboardInterrupt: console = Console() - console.print('[green b][INFO][/] bye[/]') + console.print('[yellow b][INFO][/] [green b]bye[/]') sys.exit(0)