Browse Source

CHMOD hint

pull/70/head
Ruud 13 years ago
parent
commit
0614f8f2a8
  1. 4
      couchpotato/core/_base/_core/__init__.py

4
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',
},
],
},

Loading…
Cancel
Save