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
This commit is contained in:
tengqm 2014-09-10 17:16:10 +08:00
parent e5f285f6cb
commit ee4e8cd1b0
1 changed files with 3 additions and 4 deletions

7
heat/engine/lifecycle_plugin.py Executable file → Normal file
View File

@ -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