From: Ian Main Date: Thu, 15 Mar 2012 19:22:00 +0000 (-0700) Subject: Fix missing paren. X-Git-Tag: 2014.1~2206 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=b987031f7c0a54ee8b6177195aae8b9595f44764;p=openstack-build%2Fheat-build.git Fix missing paren. Signed-off-by: Ian Main --- diff --git a/heat/api/v1/stacks.py b/heat/api/v1/stacks.py index ae666207..18a44937 100644 --- a/heat/api/v1/stacks.py +++ b/heat/api/v1/stacks.py @@ -406,7 +406,7 @@ class StackController(object): :raises HttpNotAuthorized if object is not deleteable by the requesting user """ - logger.info('in delete %s ' % req.params['StackName'] + logger.info('in delete %s ' % req.params['StackName']) if not stack_db.has_key(req.params['StackName']): msg = _("Stack does not exist with that name.") return webob.exc.HTTPNotFound(msg)