From 444f7f3f20ba9d6e71d43f5e283ce8bed9006271 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Wed, 23 Feb 2022 14:50:51 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Core_1/SBCore/commands/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py b/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py index 42abd23..a9c872a 100644 --- a/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py +++ b/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py @@ -165,7 +165,6 @@ class Commands(): return commands for full_trigger_str in triggers[1:]: - print(full_trigger_str) if full_trigger_str.startswith(tuple(self.config.prefix_list)): trigger_type = "command" @@ -223,7 +222,7 @@ class Commands(): trigger_type = assumed_trigger_type trigger_prefix = assumed_trigger_prefix - if not trigger_str.isspace() and trigger_str not in ['', None]: + if not full_trigger_str.isspace() and full_trigger_str not in ['', None]: commands.append({ "trigger_type": trigger_type,