Skip to content

Commit

Permalink
Fix LBAASv1 import for liberty
Browse files Browse the repository at this point in the history
Import uuidutils from oslo instead of neutron

Change-Id: If0cf90518cc05ebb4c5fcf3795679af7ed3c9dca
Partial-Bug: 1561808
  • Loading branch information
rrugge committed Mar 29, 2016
1 parent 3f58110 commit 3f18ad7
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -9,7 +9,11 @@
except ImportError:
from neutron_lbaas.extensions import loadbalancer

from neutron.openstack.common import uuidutils
try:
from neutron.openstack.common import uuidutils
except ImportError:
from oslo_utils import uuidutils

from neutron.common import exceptions as n_exc

from vnc_api.vnc_api import IdPermsType, NoIdError
Expand Down

0 comments on commit 3f18ad7

Please sign in to comment.