From d31a2e2768adea48fd34a890ab7af46d14f358d1 Mon Sep 17 00:00:00 2001 From: Joshua McKinney Date: Sun, 12 Oct 2014 03:01:20 +1100 Subject: [PATCH] Fix default permissions on files to remove execute bits on files #4053 --- couchpotato/core/_base/_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/_base/_core.py b/couchpotato/core/_base/_core.py index 78d54714..320131b8 100644 --- a/couchpotato/core/_base/_core.py +++ b/couchpotato/core/_base/_core.py @@ -290,7 +290,7 @@ config = [{ }, { 'name': 'permission_file', - 'default': '0755', + 'default': '0644', 'label': 'File CHMOD', 'description': 'See Folder CHMOD description, but for files', },