Remove typo from when I recently was testing logic for also having an include state.
This commit is contained in:
Michael Schuett 2015-07-24 17:54:47 -04:00 committed by Matt Clay
parent 627179b79e
commit 3e5a33f106

View file

@ -135,7 +135,7 @@ def main():
for instance in [i for r in reservations for i in r.instances]:
if instance.private_ip_address != None:
instance.hostname = 'ip-' + instance.private_ip_address.replace('.', '-')
if instance._state.name not in module.params.get('ignore_state') and :
if instance._state.name not in module.params.get('ignore_state'):
server_info.append(todict(instance))
except:
print module.jsonify('error getting instances from: ' + region.name)