]> review.fuel-infra Code Review - openstack-build/heat-build.git/commitdiff
Pep8 fixes
authorChris Alfonso <calfonso@redhat.com>
Mon, 21 May 2012 19:41:29 +0000 (15:41 -0400)
committerChris Alfonso <calfonso@redhat.com>
Mon, 21 May 2012 19:41:29 +0000 (15:41 -0400)
heat/cfntools/cfn_helper.py
heat/engine/parser.py
heat/engine/user.py

index 0ca2503cf0f1aa8725735325d2fa5e4b20bd6870..b89cbfdfe485b6aea00d32ff4cb180b976568028 100644 (file)
@@ -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
index af83c7caa61e5f1ef202d247fd4e010aa6b2d964..6929a244c1c0e01d870f7a23bd2ef9643d5cfa99 100644 (file)
@@ -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
index 41893b316fc327148a117b0fd3883af2e96fef7f..07cad83386c98fad4c990500ae3658d3401777dd 100644 (file)
@@ -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)
-