diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-01-04 21:18:13 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-01-04 21:18:13 +0000 |
commit | 095c25ae7e1238d7c372d77edd88b13be61ceb6d (patch) | |
tree | 48fcac240d4491bb52722385249d5c3e32ea9ce0 | |
parent | 7661d96b77f86cb81e39498121af859deb407603 (diff) | |
download | portage-095c25ae7e1238d7c372d77edd88b13be61ceb6d.tar.gz portage-095c25ae7e1238d7c372d77edd88b13be61ceb6d.tar.bz2 portage-095c25ae7e1238d7c372d77edd88b13be61ceb6d.zip |
Use -G instead of -g (typo from the previous commit).
svn path=/main/trunk/; revision=5462
-rw-r--r-- | pym/portage_data.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |