From dd4ac4e6d6972aaa8aa28abedbb29997e924d83f Mon Sep 17 00:00:00 2001
From: Zi Chuanxiu <719118794@qq.com>
Date: Fri, 30 Oct 2015 23:14:45 +0800
Subject: [PATCH] Task add method push_key

---
 jperm/ansible_api.py | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/jperm/ansible_api.py b/jperm/ansible_api.py
index 407d5cf8a..ccaf17efe 100644
--- a/jperm/ansible_api.py
+++ b/jperm/ansible_api.py
@@ -195,10 +195,7 @@ class Tasks(Command):
                 if value.get("msg"):
                     msg[key] = value.get("msg")
 
-        if not msg:
-            return {"status": "ok"}
-        else:
-            return {"status": "failed","msg": msg}
+        return {"status": "ok"} if msg else {"status": "failed","msg": msg}
 
 
     def add_user(self, user):