From 2fa15118987d0afe012a5e408dc262e73e26d185 Mon Sep 17 00:00:00 2001 From: Stefan Hagen Date: Wed, 1 Nov 2017 12:54:12 +0100 Subject: calcurse-caldav: Use /usr/bin/env in the shebang It is best practice to use `/usr/bin/env python3` instead of a hard coded path. This will search for "python3" in the PATH environment variable. Most Linux distributions install python to "/usr/bin". Most BSDs to "/usr/local/bin". Signed-off-by: Stefan Hagen Signed-off-by: Lukas Fleischer --- contrib/caldav/calcurse-caldav.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib') diff --git a/contrib/caldav/calcurse-caldav.py b/contrib/caldav/calcurse-caldav.py index 173a0a9..1d0a0c8 100755 --- a/contrib/caldav/calcurse-caldav.py +++ b/contrib/caldav/calcurse-caldav.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import argparse import base64 -- cgit v1.2.3-54-g00ecf