forked from Georg/pyacl
Correct execute bit in map
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
This commit is contained in:
parent
7fe8afba38
commit
446b519e5d
@ -52,7 +52,7 @@ def parse_permission(strpermission):
|
|||||||
permap_s = {
|
permap_s = {
|
||||||
'r': 'read',
|
'r': 'read',
|
||||||
'w': 'write',
|
'w': 'write',
|
||||||
'e': 'execute',
|
'x': 'execute',
|
||||||
}
|
}
|
||||||
|
|
||||||
outmap = DEFAULT_PERMISSIONS.copy()
|
outmap = DEFAULT_PERMISSIONS.copy()
|
||||||
|
Loading…
Reference in New Issue
Block a user