From: John Snow Date: Mon, 7 Jun 2021 20:06:47 +0000 (-0400) Subject: scripts/qmp-shell: move to python/qemu/qmp/qmp_shell.py X-Git-Tag: v6.1.0-rc0~66^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6be7206efc394b0232912e7055c7298ec2b0352d;p=thirdparty%2Fqemu.git scripts/qmp-shell: move to python/qemu/qmp/qmp_shell.py The script will be unavailable for a commit or two, which will help preserve development history attached to the new file. A forwarder will be added shortly afterwards. With qmp_shell in the python qemu.qmp package, now it is fully type checked, linted, etc. via the Python CI. It will be quite a bit harder to accidentally break it again in the future. Signed-off-by: John Snow Message-id: 20210607200649.1840382-41-jsnow@redhat.com Signed-off-by: John Snow --- diff --git a/scripts/qmp/qmp-shell b/python/qemu/qmp/qmp_shell.py old mode 100755 new mode 100644 similarity index 99% rename from scripts/qmp/qmp-shell rename to python/qemu/qmp/qmp_shell.py index 15aedb80c2a..337acfce2d2 --- a/scripts/qmp/qmp-shell +++ b/python/qemu/qmp/qmp_shell.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python3 # # Copyright (C) 2009, 2010 Red Hat Inc. # @@ -96,8 +95,6 @@ from typing import ( Sequence, ) - -sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'python')) from qemu import qmp from qemu.qmp import QMPMessage