diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-05-12 12:32:34 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-05-31 13:56:46 +0200 |
commit | 806c200ef47db61078320b58e4aafaaa5a5cdecd (patch) | |
tree | 1a42622377beb48ec936796ba8cd50e4b6c1ee9e /scripts | |
parent | 6acc5c046905183d38e2f44fb0fe69001939d969 (diff) |
scripts/qemu-gdb: 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-3-philmd@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/qemu-gdb.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/qemu-gdb.py b/scripts/qemu-gdb.py index f2a305c42e..e0bfa7b5a4 100644 --- a/scripts/qemu-gdb.py +++ b/scripts/qemu-gdb.py @@ -1,5 +1,5 @@ -#!/usr/bin/python - +#!/usr/bin/env python3 +# # GDB debugging support # # Copyright 2012 Red Hat, Inc. and/or its affiliates |