##// END OF EJS Templates
Fix setup.py script to be executable (other tools expect this)
Fernando Perez -
Show More
@@ -1,10 +1,11 b''
1 #!/usr/bin/env python
1 2 """This calls the setup routine for Python 2 or 3 as required."""
2 3
3 4 import sys
4 5
5 6 if sys.version_info[0] >= 3:
6 7 from setup3 import main
7 8 else:
8 9 from setup2 import main
9 10
10 11 main()
General Comments 0
You need to be logged in to leave comments. Login now