From 36e9f18ecd4cf5a056f533afacb4f3fa317d5901 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Thu, 12 Apr 2018 15:01:58 +1200 Subject: [PATCH] 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 --- manage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 manage.py diff --git a/manage.py b/manage.py old mode 100644 new mode 100755 index 0a64562..a815fa3 --- a/manage.py +++ b/manage.py @@ -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