Use python3 everywhere

This commit is contained in:
Johann Dreo 2013-05-05 00:20:24 +02:00
commit 64454e42f1
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
#encoding: utf-8 #encoding: utf-8
# Color Up Arbitrary Command Ouput # Color Up Arbitrary Command Ouput

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
import os import os
import sys import sys
@ -11,7 +11,7 @@ except ImportError:
from distutils.core import setup from distutils.core import setup
if sys.argv[-1] == 'publish': if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload') os.system('python3 setup.py sdist upload')
sys.exit() sys.exit()
packages = ['colout'] packages = ['colout']