This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author berker.peksag
Recipients Claudiu.Popa, berker.peksag, koobs, vajrasky, vstinner
Date 2016-09-27.21:00:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1475010044.22.0.210118623648.issue27838@psf.upfronthosting.co.za>
In-reply-to
Content
Perhaps running a script like below on the host would help to identify the problem?

import getpass
import grp
import pprint

pprint.pprint(getpass.getuser())
pprint.pprint([(g.gr_gid, g.gr_name) for g in grp.getgrall()])
pprint.pprint([(g.gr_gid, g.gr_name, g.gr_mem) for g in grp.getgrall() if getpass.getuser() in g.gr_mem])
History
Date User Action Args
2016-09-27 21:00:44berker.peksagsetrecipients: + berker.peksag, vstinner, Claudiu.Popa, koobs, vajrasky
2016-09-27 21:00:44berker.peksagsetmessageid: <1475010044.22.0.210118623648.issue27838@psf.upfronthosting.co.za>
2016-09-27 21:00:44berker.peksaglinkissue27838 messages
2016-09-27 21:00:44berker.peksagcreate