Fix db exception description

Change-Id: Ie7c1076e9cf5be1d6d63d3af7bc90933c1e588f7
Signed-off-by: Angus Salkeld <asalkeld@redhat.com>
This commit is contained in:
Angus Salkeld 2012-06-20 09:37:23 +10:00
parent 6ad3c5c3ea
commit 3df9355a68
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ def stack_delete(context, stack_id):
s = stack_get(context, stack_id)
if not s:
raise NotFound('Attempt to delete a stack with id: %s %s' %
(stack_name, 'that does not exist'))
(stack_id, 'that does not exist'))
session = Session.object_session(s)