From c183c68379b5a6791e7f2bba2418155ce36344d3 Mon Sep 17 00:00:00 2001 From: Noah Lev Date: Sat, 28 Dec 2024 18:22:50 -0800 Subject: [PATCH] Use complete URL to enable clicking in terminal At least in my terminal, links need to have their protocol to be clickable, which is nicer than needing to copy and paste. --- src/chatdbg/util/exit_message.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chatdbg/util/exit_message.py b/src/chatdbg/util/exit_message.py index 727793f..8a2b40c 100644 --- a/src/chatdbg/util/exit_message.py +++ b/src/chatdbg/util/exit_message.py @@ -13,5 +13,5 @@ def print_exit_message(*args: Any, **kwargs: Any) -> None: if _chatdbg_was_called: print("Thank you for using ChatDBG!") print( - "Share your success stories here: github.com/plasma-umass/ChatDBG/issues/53" + "Share your success stories here: https://github.com/plasma-umass/ChatDBG/issues/53" )