fix for found arg at pos 0

This commit is contained in:
Kenneth Reitz
2011-03-22 01:17:16 -04:00
parent f0206b21fc
commit ebdb04848a
+1 -1
View File
@@ -90,7 +90,7 @@ class Args(object):
def _remove(x):
found = self.first(x)
if found:
if found is not None:
self._args.pop(found)
if is_collection(x):