From fc5aa9ac289a4e76c2b5f5e707cd95550bae0a09 Mon Sep 17 00:00:00 2001
From: Ali Asad Lotia <ali.asad.lotia@zeebox.com>
Date: Sun, 16 Mar 2014 17:49:36 +0000
Subject: [PATCH] Whitespace fixes in incompatible param check

- Remove extra whitespace in conditional that checks if etype, entity or
  permissions are also set when entry is set.
---
 files/acl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/files/acl b/files/acl
index d15a31e618c..93431ecf472 100644
--- a/files/acl
+++ b/files/acl
@@ -221,7 +221,7 @@ def main():
             module.fail_json(msg="%s requires either etype and permissions or just entry be set" % state)
 
     if entry:
-        if etype  or entity  or permissions:
+        if etype or entity or permissions:
             module.fail_json(msg="entry and another incompatible field (entity, etype or permissions) are also set")
         if entry.count(":") not in [2,3]:
             module.fail_json(msg="Invalid entry: '%s', it requires 3 or 4 sections divided by ':'" % entry)