On Mon, Nov 08, 2010 at 08:45:29PM +0100, Michael Hanselmann wrote: > A new script, autotools/tarcheck, is used to check the resulting > .tar.gz file for unwanted contents like wrong file owners or > permissions. >
> + if member.mode & (stat.S_IWGRP | stat.S_IWOTH): > + success = False > + ReportError(member, "World or group readable (mode is %o)" % > member.mode) Did you mean s/readable/writeable/ ? rest LGTM.