Comment 16 for bug 1208734

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to savanna (master)

Reviewed: https://review.openstack.org/59695
Committed: http://github.com/openstack/savanna/commit/cfe9b29de2d4a9f575609925b185753a349d558f
Submitter: Jenkins
Branch: master

commit cfe9b29de2d4a9f575609925b185753a349d558f
Author: Sergey Lukjanov <email address hidden>
Date: Tue Dec 3 16:25:10 2013 +0400

    Drop os.common.exceptions

    The os.common.exceptions lib was deprecated in oslo and all usages should be
    removed.

    We're only using os.common.exceptions.Error:

    class Error(Exception):
        def __init__(self, message=None):
                super(Error, self).__init__(message)

    and we have our own base exception class with all needed stuff
    savanna.utils.exceptions.SavannaException.

    Change-Id: Ib4a1601e4b71bb38d293d457afaffa1c979b8ffb
    Closes-Bug: #1208734