From cd6104c888c6e0e2f42bb234b919faf0dff3b3fe Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 13 Mar 2013 08:10:03 -0700 Subject: [PATCH] expand_set_arguments: fix expansion breakage This broke in commit 16e1f2185bb7ed36d3119b29a50ca0ff75fa8b71. --- pym/_emerge/actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py index d7d248af2..008a5d579 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -3435,7 +3435,7 @@ def expand_set_arguments(myfiles, myaction, root_config): elif not set_atoms: print("emerge: '%s' is an empty set" % s) else: - newargs.append(SETPREFIX+s) + newargs.extend(set_atoms) for e in sets[s].errors: print(e) else: -- 2.26.2