Skip to content

Commit 297da32

Browse files
committed
bug fix: fixPermissions
1 parent 10db2f1 commit 297da32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

filemanager/filemanager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,5 +539,5 @@ def fixPermissions(self, domainName):
539539
command = 'chmod 755 %s' % (childs.path)
540540
ProcessUtilities.popenExecutioner(command)
541541

542-
command = 'chmod %s:%s %s' % (externalApp, groupName, childs.path)
542+
command = 'chown %s:%s %s' % (externalApp, groupName, childs.path)
543543
ProcessUtilities.popenExecutioner(command)

0 commit comments

Comments
 (0)