From cb307bf01aba9f76df5c1f800ae2296091a31fce Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Fri, 25 Aug 2017 06:53:02 +0200 Subject: Do not hardcode path to the Python interpreter Use `/usr/bin/env python3` instead of `/usr/bin/python3` in the shebang of Python scripts. This adds support for non-standard Python interpreter paths such as the paths used in virtualenv environments. Signed-off-by: Lukas Fleischer --- aurweb/git/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'aurweb/git/auth.py') diff --git a/aurweb/git/auth.py b/aurweb/git/auth.py index d02390da..b7819a95 100755 --- a/aurweb/git/auth.py +++ b/aurweb/git/auth.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import os import shlex -- cgit v1.2.3-24-g4f1b