From 2111394b43755e12b4f3dece59772bdd35645607 Mon Sep 17 00:00:00 2001 From: Sebastien Luttringer Date: Fri, 24 Feb 2012 15:24:07 +0100 Subject: [PATCH] fix extract command traceback command extract use only one image at a time --- bin/is | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/is b/bin/is index 6ba01b9..9abc4c5 100755 --- a/bin/is +++ b/bin/is @@ -220,7 +220,7 @@ def c_extract(args): Extract a packaged image inside a directory ''' repoman = load_repositories(args) - for image, repo in get_images(args.pattern, repoman, min=1, max=1): + for image, repo in get_images([args.pattern], repoman, min=1, max=1): image.extract(args.path, payload=args.payload, force=args.force, gendescription=args.gen_description) -- GitLab