diff --git a/clint/arguments.py b/clint/arguments.py index 1fde0b3..c87ee67 100644 --- a/clint/arguments.py +++ b/clint/arguments.py @@ -89,7 +89,7 @@ class Args(object): """Removes given arg (or list thereof) from Args object.""" def _remove(x): - found = self.find(x) + found = self.first(x) if found: self._args.pop(found)