From ce741a214ee3ab0e8a82f531a5ca8b94fce7d080 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Andr=C3=A9e?= Date: Sat, 1 Jun 2013 07:46:49 +0200 Subject: [PATCH] umask 755 should have been 022, define what not to enable, not define what to enable, derpy me. (issue #161 and issue #162) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e9e0b371..ed272dc0 100755 --- a/setup.py +++ b/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)