Pep8 fixes

This commit is contained in:
Chris Alfonso
2012-05-21 15:41:29 -04:00
parent af8dab4570
commit 21413cafcd
3 changed files with 3 additions and 3 deletions

View 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

View 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

View 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)