diff options
author | John Snow <jsnow@redhat.com> | 2022-01-10 18:28:55 -0500 |
---|---|---|
committer | John Snow <jsnow@redhat.com> | 2022-01-21 16:01:31 -0500 |
commit | fd9c3a6219b0470c356c8486188052d353846806 (patch) | |
tree | e1894835b1196c405943dd1869d84f4fd213894c /scripts/qmp/qmp-shell | |
parent | 0347c4c4cfed47e54d9dc275ceb28d35b250749f (diff) | |
download | qemu-fd9c3a6219b0470c356c8486188052d353846806.zip qemu-fd9c3a6219b0470c356c8486188052d353846806.tar.gz qemu-fd9c3a6219b0470c356c8486188052d353846806.tar.bz2 |
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 4a20f97..31b19d7 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__': |