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.
Este commit está contenido en:
Sebastian Lohff 2019-12-25 14:17:00 +01:00
padre ccd01e8b6e
commit 2b138446d4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Licensed under GNU General Public License v3 or later