Fix missing paren.

Signed-off-by: Ian Main <imain@redhat.com>
This commit is contained in:
Ian Main 2012-03-15 12:22:00 -07:00
parent 077ff505d2
commit b987031f7c
1 changed files with 1 additions and 1 deletions

View File

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