summaryrefslogtreecommitdiff
path: root/command_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'command_utils.py')
-rw-r--r--command_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/command_utils.py b/command_utils.py
index 2dc84c8..b679975 100644
--- a/command_utils.py
+++ b/command_utils.py
@@ -60,10 +60,10 @@ class Command:
return meta
@classmethod
- def description(cls, *names):
+ def description(cls, description):
def meta(f):
f.command = True
- f.names = names
+ f.description = description
return f
return meta