From e01cedde5cc513e7e183aeebb69da47f1feb4121 Mon Sep 17 00:00:00 2001 From: 0xDEADFED5 Date: Thu, 3 Apr 2025 01:18:17 -0700 Subject: [PATCH] clarify error message a bit --- evennia/contrib/utils/debugpy/cmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/contrib/utils/debugpy/cmd.py b/evennia/contrib/utils/debugpy/cmd.py index 5ef70c0e70..6d4dd61522 100644 --- a/evennia/contrib/utils/debugpy/cmd.py +++ b/evennia/contrib/utils/debugpy/cmd.py @@ -7,7 +7,7 @@ COMMAND_DEFAULT_CLASS = utils.class_from_module(settings.COMMAND_DEFAULT_CLASS) try: import debugpy except ImportError: - print("Error, debugpy not found! Please install debugpy by running: pip install debugpy") + print("Error, debugpy not found! Please install debugpy by running: `pip install debugpy`\nAfter that please reboot Evennia with `evennia reboot`") sys.exit()