From cb864e7aff79274c31f50111a0c122c86a3d87db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Andr=C3=A9e?= Date: Sat, 1 Jun 2013 05:42:55 +0200 Subject: [PATCH] whoops, wrong umask, now 755 (issue #161) 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 62020ca2..e9e0b371 100755 --- a/setup.py +++ b/setup.py @@ -271,7 +271,7 @@ class Setup(): else: conf = self.configure(opts.opts) self.viewconf(conf) - os.umask(0o77) + os.umask(0o755) if method == 'build': self.build(conf)