From 01c677ab7b5e55b2c93d6f6dc4ca1357e4339ad0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Luttringer?= Date: Tue, 15 May 2012 17:34:57 +0200 Subject: [PATCH] fix repo search doesn't be a list this produce false result when filtering by search dir in select_image is -s "local local-testing" list will list repository nammed testing. --- bin/is | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/is b/bin/is index a5e3a28..a4f5a8d 100755 --- a/bin/is +++ b/bin/is @@ -39,8 +39,9 @@ def load_repositories(args): # remove cache is asked if args.no_cache: args.cache = None - # split filter in list + # split filter and search in list args.repo_filter = Repository.split_repository_list(args.repo_filter) + args.repo_search = Repository.split_repository_list(args.repo_search) # init repo cache object repoman = RepositoryManager(args.cache, timeout=args.repo_timeout or args.timeout, filter=args.repo_filter, search=args.repo_search) -- GitLab