Skip to content

Commit 23fb03d

Browse files
authored
Merge pull request #19 from bplower/master
Set default permission mode via stat values
2 parents 2d87e32 + 821a33a commit 23fb03d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/minecraft_server_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def __init__(self, module):
5959
self.path = os.path.expanduser(module.params['path'])
6060
self.owner = module.params['owner']
6161
self.group = module.params['group']
62-
self.mode = module.params['mode'] if module.params['mode'] else 0644
62+
self.mode = module.params['mode'] if module.params['mode'] else 0o644
6363

6464
@property
6565
def changed(self):

0 commit comments

Comments
 (0)