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:
Victor Stinner 2016-03-01 21:56:34 +01:00 committed by Min Pae
parent ea98738844
commit c244f07461
1 changed files with 3 additions and 3 deletions

View File

@ -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