Fix imports on Python 3
On Python 3, imports are absolute by default. Because of these invalid imports, tests don't run anymore on Python 3, since tests cannot be loaded. Change-Id: Ib11a09432939df959568de400f60dfe981d0a403
This commit is contained in:
parent
ea98738844
commit
c244f07461
@ -14,6 +14,6 @@
|
||||
# under the License.
|
||||
|
||||
|
||||
from create_port import CreatePort # noqa
|
||||
from delete_ports import DeletePorts # noqa
|
||||
from show_network import ShowNetwork # noqa
|
||||
from os_tasklib.neutron.create_port import CreatePort # noqa
|
||||
from os_tasklib.neutron.delete_ports import DeletePorts # noqa
|
||||
from os_tasklib.neutron.show_network import ShowNetwork # noqa
|
||||
|
Loading…
Reference in New Issue
Block a user