From: Arfrever Frehtes Taifersar Arahesis Date: Mon, 16 Sep 2013 05:03:02 +0000 (+0200) Subject: Bug #485056: Fix portageq with Python <2.6.5. X-Git-Tag: v2.2.7~9 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d807ee1edaf06306a328c2af45f2daa96c965c49;p=portage.git Bug #485056: Fix portageq with Python <2.6.5. --- diff --git a/bin/portageq b/bin/portageq index 0756cdb9c..82735f1f3 100755 --- a/bin/portageq +++ b/bin/portageq @@ -1193,7 +1193,7 @@ def add_pquery_arguments(parser): kwargs["help"] = opt_info["help"] except KeyError: pass - arg_group.add_argument(*pargs, **kwargs) + arg_group.add_argument(*pargs, **portage._native_kwargs(kwargs)) def usage(argv):