summaryrefslogtreecommitdiff
path: root/clcommands.py
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2008-08-06 19:53:16 +0200
committerEmile Anclin <emile.anclin@logilab.fr>2008-08-06 19:53:16 +0200
commit6642f50e712b0b06f10ea5caf3092fc5c1890f88 (patch)
tree80608f29cac2387861b520648a2c14448eda6269 /clcommands.py
parent5f33942991d24e2288e384b7959bc66d1b6e31f0 (diff)
downloadlogilab-common-6642f50e712b0b06f10ea5caf3092fc5c1890f88.tar.gz
fix error message
Diffstat (limited to 'clcommands.py')
-rw-r--r--clcommands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/clcommands.py b/clcommands.py
index 57ea325..88d54ee 100644
--- a/clcommands.py
+++ b/clcommands.py
@@ -78,7 +78,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