From ee4e8cd1b05833220de96e1abceed2aff7f79d67 Mon Sep 17 00:00:00 2001 From: tengqm Date: Wed, 10 Sep 2014 17:16:10 +0800 Subject: [PATCH] Fix file mode, remove executable bit. Fix file permission mode which was improperly set to 0755. Also some minor tweakings to the comments in code. Change-Id: I6ca2aefeab6710cdc83c3273843cb555065078e9 --- heat/engine/lifecycle_plugin.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) mode change 100755 => 100644 heat/engine/lifecycle_plugin.py diff --git a/heat/engine/lifecycle_plugin.py b/heat/engine/lifecycle_plugin.py old mode 100755 new mode 100644 index 482660d6a..ac9a12fc1 --- a/heat/engine/lifecycle_plugin.py +++ b/heat/engine/lifecycle_plugin.py @@ -1,4 +1,3 @@ - # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain @@ -15,12 +14,12 @@ class LifecyclePlugin(object): ''' - base class for pre-op and post-op work on a stack - Implementations should extend this class and override the methods + Base class for pre-op and post-op work on a stack. + Implementations should extend this class and override the methods. ''' def do_pre_op(self, cnxt, stack, current_stack=None, action=None): ''' - method to be run by heat before stack operations + Method to be run by heat before stack operations. ''' pass