From 5366c7e5b2f2542d18c611e16724e2387f161aeb Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 21 Mar 2011 23:53:16 -0400 Subject: [PATCH] not_files should return Args object. --- clint/arguments.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clint/arguments.py b/clint/arguments.py index c87ee67..57742ff 100644 --- a/clint/arguments.py +++ b/clint/arguments.py @@ -343,7 +343,8 @@ class Args(object): if not os.path.exists(arg): _args.append(arg) - return _args + return Args(_args, no_argv=True) + @property def copy(self):