]> Git Repo - qemu.git/commitdiff
scripts: Explicit usage of Python 3 (scripts without __main__)
authorPhilippe Mathieu-Daudé <[email protected]>
Thu, 30 Jan 2020 16:32:31 +0000 (17:32 +0100)
committerPhilippe Mathieu-Daudé <[email protected]>
Fri, 7 Feb 2020 14:15:16 +0000 (15:15 +0100)
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 -lF '#!/usr/bin/env python' \
      | xargs grep -L 'if __name__.*__main__')

Reported-by: Vladimir Sementsov-Ogievskiy <[email protected]>
Suggested-by: Daniel P. Berrangé <[email protected]>
Suggested-by: Stefan Hajnoczi <[email protected]>
Acked-by: Stefan Hajnoczi <[email protected]>
Acked-by: Paolo Bonzini <[email protected]>
Message-Id: <20200130163232[email protected]>
Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
scripts/analyse-9p-simpletrace.py

index 710e01adba316840e35ce74cff13cd211a6b325f..f20050fdddc76450aadac48adb3f0814b12148f7 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 # Pretty print 9p simpletrace log
 # Usage: ./analyse-9p-simpletrace <trace-events> <trace-pid>
 #
This page took 0.027288 seconds and 4 git commands to generate.