From 1cdb5dca3f53ae74fc330a69470bcf9a5d0f46da Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 21 Mar 2011 22:33:39 -0400 Subject: [PATCH] args.find is now args.first --- clint/arguments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)