Use python3 shebang for all python scripts

Fixes #1624.
Use python3 shebang for all python scripts as python still defaults to python2 on many systems.
This commit is contained in:
Luflosi
2019-05-20 12:38:06 +02:00
parent 249e59b310
commit a792c94ccf
75 changed files with 75 additions and 75 deletions

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# vim:fileencoding=utf-8
# License: GPL v3 Copyright: 2018, Kovid Goyal <kovid at kovidgoyal.net>