Răsfoiți Sursa

support/testing: sample_python_pybind.py: use python3 shebang

No functional change as we install a python symlink, but use python3 for
consistency with the other scripts.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
(cherry picked from commit ed9288505caa4c3d1c30d5d73ef3189a40ae243a)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard 1 an în urmă
părinte
comite
45c7276a97
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      support/testing/tests/package/sample_python_pybind.py

+ 1 - 1
support/testing/tests/package/sample_python_pybind.py

@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 import example
 print(example.add(1, 2))
 print(example.says)