From 2b138446d47728092abad96fd89e5b3777b963e4 Mon Sep 17 00:00:00 2001 From: Sebastian Lohff Date: Wed, 25 Dec 2019 14:17:00 +0100 Subject: [PATCH] Change shebang to /usr/bin/env python Using /usr/bin/python might have side-effects, such as the system python being used even when the script is called from within a python virtual env. env python should give us the right interpreter. As we are both python2 and python3 compatible this should cause no problems. --- servefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servefile b/servefile index 044311e..9cf96f6 100755 --- a/servefile +++ b/servefile @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # -*- coding: utf-8 -*- # Licensed under GNU General Public License v3 or later