diff options
author | 2020-01-16 11:01:26 -0800 | |
---|---|---|
committer | 2020-01-16 11:01:26 -0800 | |
commit | 1f5fd091998137321dbcad3f372827c01992faa0 (patch) | |
tree | dc6a9d65ecaba698ae33cda82e7e4216ecf7d4d1 /Examples/Modules/laser_injection_from_file/analysis.py | |
parent | 94e2366d0b0ea4a46761830f1529c8bb83be3f27 (diff) | |
download | WarpX-1f5fd091998137321dbcad3f372827c01992faa0.tar.gz WarpX-1f5fd091998137321dbcad3f372827c01992faa0.tar.zst WarpX-1f5fd091998137321dbcad3f372827c01992faa0.zip |
Fix ShellBang Python Analysis
Do not assume a location of the python interpreter.
Diffstat (limited to 'Examples/Modules/laser_injection_from_file/analysis.py')
-rwxr-xr-x | Examples/Modules/laser_injection_from_file/analysis.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/Modules/laser_injection_from_file/analysis.py b/Examples/Modules/laser_injection_from_file/analysis.py index 23b479c2d..87ef197dd 100755 --- a/Examples/Modules/laser_injection_from_file/analysis.py +++ b/Examples/Modules/laser_injection_from_file/analysis.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python # This file is part of the WarpX automated test suite. It is used to test the # injection of a laser pulse from an external binary file. |