From 901290c8a2adae13692de2e877db130cf0b842f6 Mon Sep 17 00:00:00 2001 From: jack1142 <6032823+jack1142@users.noreply.github.com> Date: Sun, 12 Jul 2020 18:31:51 +0200 Subject: [PATCH] [commands] GroupView.get_command shouldn't raise errors for empty names --- discord/ext/commands/core.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index 6af996221..ea67ea719 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -1180,6 +1180,8 @@ class GroupMixin: return self.all_commands.get(name) names = name.split() + if not names: + return None obj = self.all_commands.get(names[0]) if not isinstance(obj, GroupMixin): return obj