diff options
author | John Snow | 2022-01-11 00:28:55 +0100 |
---|---|---|
committer | John Snow | 2022-01-21 22:01:31 +0100 |
commit | fd9c3a6219b0470c356c8486188052d353846806 (patch) | |
tree | e1894835b1196c405943dd1869d84f4fd213894c /scripts/qmp/qmp-shell | |
parent | python: move qmp utilities to python/qemu/utils (diff) | |
download | qemu-fd9c3a6219b0470c356c8486188052d353846806.tar.gz qemu-fd9c3a6219b0470c356c8486188052d353846806.tar.xz qemu-fd9c3a6219b0470c356c8486188052d353846806.zip |
python: move qmp-shell under the AQMP package
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Reviewed-by: Beraldo Leal <bleal@redhat.com>
Diffstat (limited to 'scripts/qmp/qmp-shell')
-rwxr-xr-x | scripts/qmp/qmp-shell | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/qmp/qmp-shell b/scripts/qmp/qmp-shell index 4a20f97db7..31b19d73e2 100755 --- a/scripts/qmp/qmp-shell +++ b/scripts/qmp/qmp-shell @@ -4,7 +4,7 @@ import os import sys sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'python')) -from qemu.qmp import qmp_shell +from qemu.aqmp import qmp_shell if __name__ == '__main__': |