From a3fe78f352e2a5d660692696e6abb02e46e62ece Mon Sep 17 00:00:00 2001 From: Perry Kundert Date: Thu, 24 Jan 2019 13:02:28 -0800 Subject: [PATCH] Use '#!/usr/bin/env python3' vs. fixed path '/usr/bin/python3' o Many installations have python3 installed elsewhere, such as /usr/local/bin/, etc. Use the environment PATH variable to locate. --- validate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validate.py b/validate.py index da5a755..8ab5e73 100755 --- a/validate.py +++ b/validate.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import csv import sys