Browse Source

[commands] Correct command removing during cog injecting

pull/5810/head
Dan Hess 5 years ago
committed by GitHub
parent
commit
7acec502a6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/ext/commands/cog.py

2
discord/ext/commands/cog.py

@ -385,7 +385,7 @@ class Cog(metaclass=CogMeta):
except Exception as e:
# undo our additions
for to_undo in self.__cog_commands__[:index]:
bot.remove_command(to_undo)
bot.remove_command(to_undo.name)
raise e
# check if we're overriding the default

Loading…
Cancel
Save