summaryrefslogtreecommitdiff
path: root/clcommands.py
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2008-08-11 10:05:52 +0200
committerEmile Anclin <emile.anclin@logilab.fr>2008-08-11 10:05:52 +0200
commit6b11efeccabd730681ea4cf015c732dda007d8d9 (patch)
treeeb6b83e57115fc8cf3793f0b416cf27e92d78a44 /clcommands.py
parent751602a85e5653eb35d71c2877321f618b212f64 (diff)
parent6642f50e712b0b06f10ea5caf3092fc5c1890f88 (diff)
downloadlogilab-common-6b11efeccabd730681ea4cf015c732dda007d8d9.tar.gz
merge
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 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