From b987031f7c0a54ee8b6177195aae8b9595f44764 Mon Sep 17 00:00:00 2001 From: Ian Main Date: Thu, 15 Mar 2012 12:22:00 -0700 Subject: [PATCH] Fix missing paren. Signed-off-by: Ian Main --- heat/api/v1/stacks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heat/api/v1/stacks.py b/heat/api/v1/stacks.py index ae66620702..18a449378b 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)