mirror of
https://github.com/erkin/ponysay.git
synced 2024-11-22 04:27:58 +01:00
umask 755 should have been 022, define what not to enable, not define what to enable, derpy me. (issue #161 and issue #162)
Signed-off-by: Mattias Andrée <maandree@operamail.com>
This commit is contained in:
parent
ae2856a54a
commit
ce741a214e
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -271,7 +271,7 @@ class Setup():
|
|||
else:
|
||||
conf = self.configure(opts.opts)
|
||||
self.viewconf(conf)
|
||||
os.umask(0o755)
|
||||
os.umask(0o022)
|
||||
|
||||
if method == 'build':
|
||||
self.build(conf)
|
||||
|
|
Loading…
Reference in a new issue