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: I2911599f7b1b8cfb681a4b366a6d39ba90ec48f6
Partial-Bug: 1561808
  • Loading branch information
rrugge committed Mar 25, 2016
1 parent c7de588 commit 602d487
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 602d487

Please sign in to comment.