From 6a185908ac06f666fb5063c56bcee4e775ba2179 Mon Sep 17 00:00:00 2001 From: Andrei Date: Sat, 17 Jun 2017 16:16:38 -0700 Subject: [PATCH] Always return a list from get_commands_for_message (fixes #36) --- disco/bot/bot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/disco/bot/bot.py b/disco/bot/bot.py index 00d1e6d..4ca2a67 100644 --- a/disco/bot/bot.py +++ b/disco/bot/bot.py @@ -295,7 +295,7 @@ class Bot(LoggingClass): mention_rules.get('role', False) and any(mention_roles), msg.channel.is_dm )): - return + return [] if mention_direct: if msg.guild: @@ -316,12 +316,12 @@ class Bot(LoggingClass): content = content.lstrip() if prefix and not content.startswith(prefix): - return + return [] else: content = content[len(prefix):] if not self.command_matches_re or not self.command_matches_re.match(content): - return + return [] options = [] for command in self.commands: