summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--clcommands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/clcommands.py b/clcommands.py
index e68fa7f..8e30c0b 100644
--- a/clcommands.py
+++ b/clcommands.py
@@ -68,7 +68,7 @@ def pop_arg(args_list, expected_size_after=0, msg="Missing argument"):
except IndexError:
raise BadCommandUsage(msg)
if expected_size_after is not None and len(args_list) > expected_size_after:
- raise BadCommandUsage('Too much arguments')
+ raise BadCommandUsage('too many arguments')
return value