scripts: Explicit usage of Python 3 (scripts with __main__)

Use the program search path to find the Python 3 interpreter.

Patch created mechanically by running:

  $ sed -i "s,^#\!/usr/bin/\(env\ \)\?python$,#\!/usr/bin/env python3," \
       $(git grep -l 'if __name__.*__main__')

Reported-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Suggested-by: Daniel P. Berrangé <berrange@redhat.com>
Suggested-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200130163232.10446-6-philmd@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
This commit is contained in:
Philippe Mathieu-Daudé 2020-01-30 17:32:25 +01:00
parent c88ee46cdb
commit 3d004a371e
14 changed files with 14 additions and 14 deletions

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Analyse lock events and compute statistics # Analyse lock events and compute statistics

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# Copyright (c) 2018 Linaro Limited # Copyright (c) 2018 Linaro Limited
# #
# This library is free software; you can redistribute it and/or # This library is free software; you can redistribute it and/or

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# #
# Copyright (c) 2017 Red Hat Inc # Copyright (c) 2017 Red Hat Inc
# #

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# #
# KVM Flight Recorder - ring buffer tracing script # KVM Flight Recorder - ring buffer tracing script
# #

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# QAPI generator # QAPI generator
# #
# This work is licensed under the terms of the GNU GPL, version 2 or later. # This work is licensed under the terms of the GNU GPL, version 2 or later.

View file

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python3
# QEMU Guest Agent Client # QEMU Guest Agent Client
# #

View file

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python3
# #
# QMP command line tool # QMP command line tool
# #

View file

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python3
# #
# Low-level QEMU shell on top of QMP. # Low-level QEMU shell on top of QMP.
# #

View file

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python3
## ##
# QEMU Object Model test tools # QEMU Object Model test tools
# #

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# #
# Render Qemu Block Graph # Render Qemu Block Graph
# #

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Dump the contents of a recorded execution stream # Dump the contents of a recorded execution stream

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# #
# Pretty-printer for simple trace backend binary trace files # Pretty-printer for simple trace backend binary trace files
# #

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """

View file

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python3
# #
# Compares vmstate information stored in JSON format, obtained from # Compares vmstate information stored in JSON format, obtained from
# the -dump-vmstate QEMU command. # the -dump-vmstate QEMU command.