nova_compute: remove ternary statement

This commit is contained in:
Joshua Conner 2014-03-03 10:55:28 -08:00
parent ce5939c507
commit 10f36e8c62

View file

@ -197,7 +197,8 @@ def _get_server_state(module, nova):
# with names that partially match the server name, so we have to
# strictly filter here
servers = [x for x in servers if x.name == module.params['name']]
server = servers[0] if servers else None
if servers:
server = servers[0]
except Exception, e:
module.fail_json(msg = "Error in getting the server list: %s" % e.message)
if server and module.params['state'] == 'present':