From f22badbf236e97ee55d5253e7bf322a871bece74 Mon Sep 17 00:00:00 2001 From: Sebastien Luttringer Date: Fri, 2 Mar 2012 11:26:53 +0100 Subject: [PATCH] no_cache is not optional --- bin/is | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/is b/bin/is index 9f9cb77..88b3189 100755 --- a/bin/is +++ b/bin/is @@ -34,7 +34,7 @@ def load_repositories(args): Load repositories on a repository manager ''' # remove cache is asked - if hasattr(args, "no_cache") and args.no_cache: + if args.no_cache: args.cache = None # split filter in list args.repo_filter = Repository.split_repository_list(args.repo_filter) -- GitLab