Styling: misc pep8

This commit is contained in:
Michael DeHaan 2013-06-30 18:50:40 -04:00
parent 6958cf41ef
commit 76edfc3d56

View file

@ -119,22 +119,22 @@ def stack_operation(cfn, stack_name, operation):
output='Stack Deleted',
events=map(str, list(stack.describe_events())))
else:
result = dict (changed= True, output='Stack Not Found')
result = dict(changed= True, output='Stack Not Found')
break
if '%s_COMPLETE' % operation == stack.stack_status:
result = dict(changed=True,
events = map(str, list(stack.describe_events())),
output = 'Stack %s complete' % operation )
output = 'Stack %s complete' % operation)
break
if '%s_ROLLBACK_COMPLETE' % operation == stack.stack_status:
result = dict(changed=True,
events = map(str, list(stack.describe_events())),
output = 'Problem with %s. Rollback complete' % operation )
output = 'Problem with %s. Rollback complete' % operation)
break
elif '%s_FAILED' % operation == stack.stack_status:
result = dict(changed=False,
events = map(str, list(stack.describe_events())),
output = 'Stack %s failed' % operation )
output = 'Stack %s failed' % operation)
break
else:
time.sleep(5)