Use /usr/bin/python2 in scripts

New packaging guidelines:

https://fedoraproject.org/wiki/Packaging:Python#Multiple_Python_Runtimes
https://fedorahosted.org/fpc/ticket/327#comment:9
This commit is contained in:
Brian C. Lane 2015-02-09 08:48:22 -08:00
parent 918c2c0cd1
commit 3f77b80d6c
6 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/python2
from distutils.core import setup from distutils.core import setup
import os import os

View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/python2
# #
# image-minimizer: removes files and packages on the filesystem # image-minimizer: removes files and packages on the filesystem
# #

View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/python2
# #
# Live Media Creator # Live Media Creator
# #

View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/python2
# #
# lorax # lorax
# #

View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/python2
# mkefiboot - a tool to make EFI boot images # mkefiboot - a tool to make EFI boot images
# #
# Copyright (C) 2011-2014 Red Hat, Inc. # Copyright (C) 2011-2014 Red Hat, Inc.

View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/python2
# test-parse-template - parse and print (but don't execute!) a Lorax Template. # test-parse-template - parse and print (but don't execute!) a Lorax Template.
# Copyright (C) 2011 Red Hat, Inc. # Copyright (C) 2011 Red Hat, Inc.
# #