diff --git a/disco/bot/command.py b/disco/bot/command.py index 3d0398a..c5aaddf 100644 --- a/disco/bot/command.py +++ b/disco/bot/command.py @@ -140,6 +140,10 @@ class Command(object): self.update(*args, **kwargs) + @property + def name(self): + return self.triggers[0] + def __call__(self, *args, **kwargs): return self.func(*args, **kwargs)