From 095c25ae7e1238d7c372d77edd88b13be61ceb6d Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Thu, 4 Jan 2007 21:18:13 +0000 Subject: [PATCH] Use -G instead of -g (typo from the previous commit). svn path=/main/trunk/; revision=5462 --- pym/portage_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage_data.py b/pym/portage_data.py index b7344222f..707c76b2d 100644 --- a/pym/portage_data.py +++ b/pym/portage_data.py @@ -114,7 +114,7 @@ if secpass >= 2: # Get a list of group IDs for the portage user. Do not use grp.getgrall() # since it is known to trigger spurious SIGPIPE problems with nss_ldap. from commands import getstatusoutput - mystatus, myoutput = getstatusoutput("id -g portage") + mystatus, myoutput = getstatusoutput("id -G portage") if mystatus == os.EX_OK: for x in myoutput.split(): try: -- 2.26.2