From 0614f8f2a8d29585d77ee0813eb1689f48d7593b Mon Sep 17 00:00:00 2001 From: Ruud Date: Tue, 24 Jan 2012 19:05:10 +0100 Subject: [PATCH] CHMOD hint --- couchpotato/core/_base/_core/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/couchpotato/core/_base/_core/__init__.py b/couchpotato/core/_base/_core/__init__.py index dac4756b..38631a2e 100644 --- a/couchpotato/core/_base/_core/__init__.py +++ b/couchpotato/core/_base/_core/__init__.py @@ -82,13 +82,13 @@ config = [{ 'name': 'permission_folder', 'default': 0755, 'label': 'Folder CHMOD', - 'description': 'Permission (octal) for creating/copying folders.', + 'description': 'Permission (decimal) for creating/copying folders. 0755 => 593, 0777 => 511', }, { 'name': 'permission_file', 'default': 0755, 'label': 'File CHMOD', - 'description': 'Permission (octal) for creating/copying files', + 'description': 'Same as Folder CHMOD but for files', }, ], },