From 08e8f732c53e17365be1b4ad818b8b28c1c4c289 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Astori?= Date: Wed, 19 Aug 2015 00:24:08 +0000 Subject: [PATCH] Fix minor whitespace issues --- lib/ansible/modules/files/acl.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/files/acl.py b/lib/ansible/modules/files/acl.py index 8b93da1661..1485122534 100644 --- a/lib/ansible/modules/files/acl.py +++ b/lib/ansible/modules/files/acl.py @@ -21,7 +21,7 @@ module: acl version_added: "1.4" short_description: Sets and retrieves file ACL information. description: - - Sets and retrieves file ACL information. + - Sets and retrieves file ACL information. notes: - As of Ansible 2.0, this module only supports Linux distributions. options: @@ -122,6 +122,7 @@ acl: sample: [ "user::rwx", "group::rwx", "other::rwx" ] ''' + def split_entry(entry): ''' splits entry and ensures normalized return''' @@ -161,7 +162,7 @@ def build_entry(etype, entity, permissions=None): def build_command(module, mode, path, follow, default, recursive, entry=''): - '''Builds and returns agetfacl/setfacl command.''' + '''Builds and returns a getfacl/setfacl command.''' if mode == 'set': cmd = [module.get_bin_path('setfacl', True)] cmd.append('-m "%s"' % entry)