From e8194f768f281d2b8013d6f104090fdb392042c4 Mon Sep 17 00:00:00 2001 From: Xiretza Date: Sat, 7 May 2022 16:24:25 +0200 Subject: [PATCH] fix(manage.py): fix shebang to work on Debian-based systems In debian, /usr/bin/python is python 2.7. --- manage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manage.py b/manage.py index 91277fb..a3a8741 100755 --- a/manage.py +++ b/manage.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """Django's command-line utility for administrative tasks.""" import os import sys