Fix missing uuidutils import

The UTs aren't run on the stable/newton branch due to lack
of OpenStack Infra resources. Unfortunately that means that
bugs like the following can only be caught by running UTs
on local systems. This patch fixes such a bug, which is just
a missing import.

Change-Id: I452a13c4d424688fb48c89cf6cc1e2af1c94558b
This commit is contained in:
Thomas Bachman 2018-03-01 19:22:37 +00:00
parent 57bf5c2f7a
commit 4eb848fb89
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +26,7 @@ from neutron_lib.api import validators
from neutron_lib import constants
from neutron_lib import exceptions as n_exc
from oslo_log import log
from oslo_utils import uuidutils
from sqlalchemy import event
from sqlalchemy.orm import exc