浏览代码

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>
Peter Korsgaard 1 年之前
父节点
当前提交
ed9288505c
共有 1 个文件被更改,包括 1 次插入1 次删除
  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)