summaryrefslogtreecommitdiff
path: root/heatclient/v1
diff options
context:
space:
mode:
Diffstat (limited to 'heatclient/v1')
-rw-r--r--heatclient/v1/shell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/heatclient/v1/shell.py b/heatclient/v1/shell.py
index acea3fc..a61c0bc 100644
--- a/heatclient/v1/shell.py
+++ b/heatclient/v1/shell.py
@@ -323,7 +323,7 @@ def do_stack_delete(hc, args):
fields = {'stack_id': sid}
try:
hc.stacks.delete(**fields)
- except exc.HTTPNotFound as e:
+ except (exc.HTTPNotFound, exc.Forbidden) as e:
failure_count += 1
print(e)
if failure_count: