diff options
author | John Snow <jsnow@redhat.com> | 2019-06-27 17:28:14 -0400 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2019-07-01 19:02:10 -0300 |
commit | abf0bf998dcb20807195018bfdd7abca2930dbbd (patch) | |
tree | 1e8edb1d32d794a2ca1ac2e43bdffa7777155c36 /tests/qemu-iotests | |
parent | 08aa87f5e78270c3b225eb5c89c069aa9f49f5c1 (diff) | |
download | qemu-abf0bf998dcb20807195018bfdd7abca2930dbbd.zip qemu-abf0bf998dcb20807195018bfdd7abca2930dbbd.tar.gz qemu-abf0bf998dcb20807195018bfdd7abca2930dbbd.tar.bz2 |
python/qemu: split QEMUMachine out from underneath __init__.py
It's not obvious that something named __init__.py actually houses
important code that isn't relevant to python packaging glue. Move the
QEMUMachine and related error classes out into their own module.
Adjust users to the new import location.
Signed-off-by: John Snow <jsnow@redhat.com>
Message-Id: <20190627212816.27298-2-jsnow@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'tests/qemu-iotests')
-rwxr-xr-x | tests/qemu-iotests/235 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/235 b/tests/qemu-iotests/235 index 2b6a8c1..fedd111 100755 --- a/tests/qemu-iotests/235 +++ b/tests/qemu-iotests/235 @@ -25,7 +25,7 @@ from iotests import qemu_img_create, qemu_io, file_path, log sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'python')) -from qemu import QEMUMachine +from qemu.machine import QEMUMachine # Note: # This test was added to check that mirror dead-lock was fixed (see previous |