diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-05-12 12:32:35 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-05-31 13:56:46 +0200 |
commit | 06d4c71f4869386abf97f45f61c21e9dc449943f (patch) | |
tree | f707d1cd67ffb732a36a59ff54d406b2ac539296 | |
parent | 806c200ef47db61078320b58e4aafaaa5a5cdecd (diff) | |
download | qemu-06d4c71f4869386abf97f45f61c21e9dc449943f.zip qemu-06d4c71f4869386abf97f45f61c21e9dc449943f.tar.gz qemu-06d4c71f4869386abf97f45f61c21e9dc449943f.tar.bz2 |
scripts/qmp: Use Python 3 interpreter
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: John Snow <jsnow@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Message-Id: <20200512103238.7078-4-philmd@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
-rwxr-xr-x | scripts/qmp/qom-get | 2 | ||||
-rwxr-xr-x | scripts/qmp/qom-list | 2 | ||||
-rwxr-xr-x | scripts/qmp/qom-set | 2 | ||||
-rwxr-xr-x | scripts/qmp/qom-tree | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/scripts/qmp/qom-get b/scripts/qmp/qom-get index 007b4cd..7c5ede9 100755 --- a/scripts/qmp/qom-get +++ b/scripts/qmp/qom-get @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 ## # QEMU Object Model test tools # diff --git a/scripts/qmp/qom-list b/scripts/qmp/qom-list index 03bda34..bb68fd6 100755 --- a/scripts/qmp/qom-list +++ b/scripts/qmp/qom-list @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 ## # QEMU Object Model test tools # diff --git a/scripts/qmp/qom-set b/scripts/qmp/qom-set index c37fe78..19881d8 100755 --- a/scripts/qmp/qom-set +++ b/scripts/qmp/qom-set @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 ## # QEMU Object Model test tools # diff --git a/scripts/qmp/qom-tree b/scripts/qmp/qom-tree index 1c8acf6..fa91147 100755 --- a/scripts/qmp/qom-tree +++ b/scripts/qmp/qom-tree @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 ## # QEMU Object Model test tools # |