Removed a faulty default alias in the Command base class; since commands are more strictly compared by key *and* alias, this could cause some confusing overload scenarios.

This commit is contained in:
Griatch 2015-07-18 08:30:05 +02:00
parent 8e554ef8f6
commit 82a80174f0

View file

@ -23,7 +23,7 @@ class Command(BaseCommand):
# these need to be specified
key = "MyCommand"
aliases = ["mycmd", "myc"]
aliases = []
locks = "cmd:all()"
help_category = "General"