From f2a952c790e472c2264cbff428278d03fbc843bc Mon Sep 17 00:00:00 2001 From: Zane Bitter Date: Wed, 11 Apr 2012 18:59:33 +0200 Subject: [PATCH] Import missing exceptions The local definitions of several exceptions were removed by commit e7f05dba5d899200b9e09b22ea423fa33fd1b612 because OpenStack already provides them, but we need to import them to actually be able to use them. Signed-off-by: Zane Bitter --- heat/common/exception.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heat/common/exception.py b/heat/common/exception.py index 4508997088..8b6e875b5f 100644 --- a/heat/common/exception.py +++ b/heat/common/exception.py @@ -19,7 +19,7 @@ import functools import urlparse -from heat.openstack.common.exception import OpenstackException +from heat.openstack.common.exception import * class RedirectException(Exception): def __init__(self, url):