Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Borean <jborean93@gmail.com>2020-10-07 18:07:27 +0300
committerGitHub <noreply@github.com>2020-10-07 18:07:27 +0300
commit1ae3683d0c49c84a0df60d3aa176065c783c078b (patch)
treeb6ffedb988483107fff74ba725f85b1488cb11a6 /examples
parentcfa41898c4c1b349acd3d8d54018a5cc7571dcbc (diff)
Fix example to use correct shebang (#72129)
* Fix example to use correct shebang * Fix other example modules as well * Ignore shebang test
Diffstat (limited to 'examples')
-rw-r--r--examples/scripts/my_test.py2
-rw-r--r--examples/scripts/my_test_facts.py2
-rw-r--r--examples/scripts/my_test_info.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/scripts/my_test.py b/examples/scripts/my_test.py
index 3363fc1aa53..16aac8934dc 100644
--- a/examples/scripts/my_test.py
+++ b/examples/scripts/my_test.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python
# Copyright: (c) 2018, Terry Jones <terry.jones@example.org>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
diff --git a/examples/scripts/my_test_facts.py b/examples/scripts/my_test_facts.py
index 8484e3c3743..555f878efb4 100644
--- a/examples/scripts/my_test_facts.py
+++ b/examples/scripts/my_test_facts.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python
# Copyright: (c) 2020, Your Name <YourName@example.org>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
diff --git a/examples/scripts/my_test_info.py b/examples/scripts/my_test_info.py
index 7db3edda281..64da3c7b8a8 100644
--- a/examples/scripts/my_test_info.py
+++ b/examples/scripts/my_test_info.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python
# Copyright: (c) 2020, Your Name <YourName@example.org>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)