From 39eb11a5981d7d60c96c3ea8a543aa1c803ca082 Mon Sep 17 00:00:00 2001 From: John Dewey Date: Thu, 21 Aug 2014 22:01:04 -0700 Subject: [PATCH] Corrected a simple syntax error in galaxy --- bin/ansible-galaxy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ansible-galaxy b/bin/ansible-galaxy index 801c4a53f99..30476973bd2 100755 --- a/bin/ansible-galaxy +++ b/bin/ansible-galaxy @@ -769,7 +769,7 @@ def execute_install(args, options, parser): tmp_file = fetch_role(role_src, role["version"], role_data, options) installed = False if tmp_file: - installed = install_role(role.get("name"), role.get("version"), tmp_file, options): + installed = install_role(role.get("name"), role.get("version"), tmp_file, options) # we're done with the temp file, clean it up os.unlink(tmp_file) # install dependencies, if we want them