From 86e501696f34d366de9701403a82e07039f97a8c Mon Sep 17 00:00:00 2001 From: evilchili Date: Sun, 20 Aug 2023 18:34:07 -0700 Subject: [PATCH] removing debug print --- deadsands/site_tools/shell/interactive_shell.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/deadsands/site_tools/shell/interactive_shell.py b/deadsands/site_tools/shell/interactive_shell.py index 5915f05..2e85be3 100644 --- a/deadsands/site_tools/shell/interactive_shell.py +++ b/deadsands/site_tools/shell/interactive_shell.py @@ -114,8 +114,6 @@ class DMShell(BasePrompt): except IndexError: val = None - print(cmd) - handler = getattr(self, f"_handler_date_{cmd}", None) if not handler: self.console.error(f"Unsupported command: {cmd}. Try 'help date'.")