From ea2a665981079211d79f3ee60c1d525b4d3fa35f Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Sun, 30 Jun 2013 18:50:40 -0400 Subject: [PATCH] Styling: misc pep8 --- library/cloud/cloudformation | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/library/cloud/cloudformation b/library/cloud/cloudformation index ecbafeb0b81..985f1dc6e56 100644 --- a/library/cloud/cloudformation +++ b/library/cloud/cloudformation @@ -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)