diff options
| author | John Snow <jsnow@redhat.com> | 2022-02-25 12:08:28 -0500 |
|---|---|---|
| committer | John Snow <jsnow@redhat.com> | 2022-03-07 14:36:47 -0500 |
| commit | 7cba010e821bf227e5fa016d0df06f2a33a0c318 (patch) | |
| tree | a7fe393e0681cb09310f300e59abde8dc2477af1 | |
| parent | 4c1fe7003c9b373acb0791b4356e2285a10365c0 (diff) | |
| download | focaccia-qemu-7cba010e821bf227e5fa016d0df06f2a33a0c318.tar.gz focaccia-qemu-7cba010e821bf227e5fa016d0df06f2a33a0c318.zip | |
scripts/qmp-shell-wrap: Fix import path
Mea culpa. Dan's patch wound up with the wrong import path because I re-ordered my most recent pull request and missed that this needed a fix on rebase. Fixes: 43912529 Reported-by: Kashyap Chamarthy <kchamart@redhat.com> Signed-off-by: John Snow <jsnow@redhat.com> Tested-by: Kashyap Chamarthy <kchamart@redhat.com> Message-id: 20220225170828.3418305-1-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
| -rwxr-xr-x | scripts/qmp/qmp-shell-wrap | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/qmp/qmp-shell-wrap b/scripts/qmp/qmp-shell-wrap index 9e94da114f..66846e36d1 100755 --- a/scripts/qmp/qmp-shell-wrap +++ b/scripts/qmp/qmp-shell-wrap @@ -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__': |