From 7cba010e821bf227e5fa016d0df06f2a33a0c318 Mon Sep 17 00:00:00 2001 From: John Snow Date: Fri, 25 Feb 2022 12:08:28 -0500 Subject: [PATCH] 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 Signed-off-by: John Snow Tested-by: Kashyap Chamarthy Message-id: 20220225170828.3418305-1-jsnow@redhat.com Signed-off-by: John Snow --- scripts/qmp/qmp-shell-wrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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__':