From: Angus Salkeld Date: Wed, 11 Apr 2012 09:29:13 +0000 (+1000) Subject: Fix silly spello X-Git-Tag: 2014.1~2061 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=7523932c5d7ef794a26fab0de13b7bc242577cc0;p=openstack-build%2Fheat-build.git Fix silly spello Signed-off-by: Angus Salkeld --- diff --git a/heat/engine/resources.py b/heat/engine/resources.py index 7853716b..3f89c713 100644 --- a/heat/engine/resources.py +++ b/heat/engine/resources.py @@ -73,7 +73,7 @@ class Resource(object): return self._nova[service_type] def create(self): - print 'createing %s name:%s' % (self.t['Type'], self.name) + print 'creating %s name:%s' % (self.t['Type'], self.name) self.stack.resolve_attributes(self.t) self.stack.resolve_joins(self.t) @@ -97,7 +97,7 @@ class Resource(object): self.state = new_state def delete(self): - print 'deleteping %s name:%s id:%s' % (self.t['Type'], self.name, self.instance_id) + print 'deleting %s name:%s id:%s' % (self.t['Type'], self.name, self.instance_id) def reload(self): pass @@ -133,7 +133,7 @@ class GenericResource(Resource): return self.state_set(self.CREATE_IN_PROGRESS) super(GenericResource, self).create() - print 'createing GenericResource %s' % self.name + print 'creating GenericResource %s' % self.name class ElasticIp(Resource):