浏览代码

Merge pull request #13970 from xwang2713/HPCC-24416-replace-python

HPCC-24416 replace shebang "/usr/bin/python" with "/usr/bin/env python"

Reviewed-by: Michael Gardner
Merged-by: Gavin Halliday <ghalliday@hpccsystems.com>
Gavin Halliday 5 年之前
父节点
当前提交
48c2515286
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      initfiles/examples/embed/python_cat.py
  2. 1 1
      testing/ecl/python_cat.py

+ 1 - 1
initfiles/examples/embed/python_cat.py

@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 from __future__ import print_function
 
 def cat(a, b):

+ 1 - 1
testing/ecl/python_cat.py

@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 from __future__ import print_function
 
 def cat(a, b):