Switch last 2 files using /usr/bin/env to /usr/bin/python3
Other python scripts already use python3 by default. Both files don't have exec bits so they have to be run using python interpret on command line anyway: $ python3 ./setup.py ... Signed-off-by: Petr Lautrbach <plautrba@redhat.com>
This commit is contained in:
parent
68fbb6b0a0
commit
54cb5c674b
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/python3
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/python3
|
||||||
|
|
||||||
# Author: Thomas Liu <tliu@redhat.com>
|
# Author: Thomas Liu <tliu@redhat.com>
|
||||||
# Author: Dan Walsh <dwalsh@redhat.com>
|
# Author: Dan Walsh <dwalsh@redhat.com>
|
||||||
|
|
Loading…
Reference in New Issue