From 0ee3d7b93c5e27a2fd5135b31fbb811675e4e65b Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Thu, 16 Apr 2020 12:16:46 +0500 Subject: [PATCH] bug fix: fixPermissions --- filemanager/filemanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filemanager/filemanager.py b/filemanager/filemanager.py index 5afcbb897..6a06c08cc 100755 --- a/filemanager/filemanager.py +++ b/filemanager/filemanager.py @@ -539,5 +539,5 @@ class FileManager: command = 'chmod 755 %s' % (childs.path) ProcessUtilities.popenExecutioner(command) - command = 'chmod %s:%s %s' % (externalApp, groupName, childs.path) + command = 'chown %s:%s %s' % (externalApp, groupName, childs.path) ProcessUtilities.popenExecutioner(command) \ No newline at end of file