From: Zac Medico Date: Wed, 13 Mar 2013 15:10:03 +0000 (-0700) Subject: expand_set_arguments: fix expansion breakage X-Git-Tag: v2.2.0_alpha167~38 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=cd6104c888c6e0e2f42bb234b919faf0dff3b3fe;p=portage.git expand_set_arguments: fix expansion breakage This broke in commit 16e1f2185bb7ed36d3119b29a50ca0ff75fa8b71. --- 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: