From ac3f05c72044d9bf9cedd5adf569b1f3d628e329 Mon Sep 17 00:00:00 2001 From: YAMASAKI Masahide Date: Sun, 25 Aug 2013 05:56:57 +0900 Subject: [PATCH] Take out the spaces inside the parenthesis. --- bin/ansible-playbook | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ansible-playbook b/bin/ansible-playbook index 91586e79d91..2a35d57ff7d 100755 --- a/bin/ansible-playbook +++ b/bin/ansible-playbook @@ -119,7 +119,7 @@ def main(args): for playbook in args: if not os.path.exists(playbook): raise errors.AnsibleError("the playbook: %s could not be found" % playbook) - if not ( os.path.isfile(playbook) or stat.S_ISFIFO(os.stat(playbook).st_mode) ): + if not (os.path.isfile(playbook) or stat.S_ISFIFO(os.stat(playbook).st_mode)): raise errors.AnsibleError("the playbook: %s does not appear to be a file" % playbook) # run all playbooks specified on the command line