From 21413cafcd515af253e72de6b4fc6f237c0cb684 Mon Sep 17 00:00:00 2001 From: Chris Alfonso Date: Mon, 21 May 2012 15:41:29 -0400 Subject: [PATCH] Pep8 fixes --- heat/cfntools/cfn_helper.py | 2 +- heat/engine/parser.py | 2 +- heat/engine/user.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/heat/cfntools/cfn_helper.py b/heat/cfntools/cfn_helper.py index 0ca2503c..b89cbfdf 100644 --- a/heat/cfntools/cfn_helper.py +++ b/heat/cfntools/cfn_helper.py @@ -174,7 +174,7 @@ class CommandRunner(object): self._stdout = output[0] self._stderr = output[1] if self._next: - self._next.run() + self._next.run() return self @property diff --git a/heat/engine/parser.py b/heat/engine/parser.py index af83c7ca..6929a244 100644 --- a/heat/engine/parser.py +++ b/heat/engine/parser.py @@ -23,7 +23,7 @@ from heat.engine import instance from heat.engine import volume from heat.engine import eip from heat.engine import security_group -from heat.engine import user +from heat.engine import user from heat.engine import wait_condition from heat.db import api as db_api diff --git a/heat/engine/user.py b/heat/engine/user.py index 41893b31..07cad833 100644 --- a/heat/engine/user.py +++ b/heat/engine/user.py @@ -42,6 +42,7 @@ class User(Resource): logger.info('%s.GetAtt(%s) == %s' % (self.name, key, res)) return unicode(res) + class AccessKey(Resource): def __init__(self, name, json_snippet, stack): super(AccessKey, self).__init__(name, json_snippet, stack) @@ -64,4 +65,3 @@ class AccessKey(Resource): logger.info('%s.GetAtt(%s) == %s' % (self.name, key, res)) return unicode(res) - -- 2.45.2