Import missing exceptions

The local definitions of several exceptions were removed by commit
e7f05dba5d because OpenStack already provides
them, but we need to import them to actually be able to use them.

Signed-off-by: Zane Bitter <zbitter@redhat.com>
This commit is contained in:
Zane Bitter 2012-04-11 18:59:33 +02:00
parent 34962ac074
commit f2a952c790
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@
import functools import functools
import urlparse import urlparse
from heat.openstack.common.exception import OpenstackException from heat.openstack.common.exception import *
class RedirectException(Exception): class RedirectException(Exception):
def __init__(self, url): def __init__(self, url):