From f946026ca783abbacbfb49b3245b594084d4e6a4 Mon Sep 17 00:00:00 2001 From: Chris Church Date: Tue, 29 Oct 2013 15:33:52 -0400 Subject: [PATCH] AC-537 Fix syntax error. --- awx/main/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/tasks.py b/awx/main/tasks.py index bc8c82afca..dbaa055957 100644 --- a/awx/main/tasks.py +++ b/awx/main/tasks.py @@ -754,7 +754,7 @@ class RunInventoryUpdate(BaseTask): credential = inventory_source.credential if credential: passwords['source_username'] = credential.username - passwords['source_password'] = decrypt_field(credential, 'password')) + passwords['source_password'] = decrypt_field(credential, 'password') return passwords def build_env(self, inventory_update, **kwargs):