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 <github@textmail.me>
Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
This commit is contained in:
Stefan Hagen 2017-11-01 12:54:12 +01:00 committed by Lukas Fleischer
parent 9443de4783
commit 2fa1511898

View File

@ -1,4 +1,4 @@
#!/usr/bin/python3 #!/usr/bin/env python3
import argparse import argparse
import base64 import base64