Make manage.py executable and tidy shebang

It's useful if the script is executable so we don't have to specify
python on the command line. We also only need one shebang line (not sure
how we ended up with two) and it should point to python3.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
Paul Eggleton 2018-04-12 15:01:58 +12:00
parent 0f4c983bd4
commit 36e9f18ecd

4
manage.py Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# layerindex-web - Django management script
#
@ -6,7 +6,7 @@
#
# Copyright (c) Django Software Foundation and individual contributors.
# All rights reserved.
#!/usr/bin/env python
import os
import sys