misc: run manage.py with python3 (#36224)

This commit is contained in:
Frédéric Péters 2019-09-18 12:53:20 +02:00
parent 62bc0ac403
commit fef5d7c78d
2 changed files with 3 additions and 3 deletions

View File

@ -18,9 +18,9 @@ fi
if test $# -eq 0
then
python ${MANAGE} help
python3 ${MANAGE} help
exit 1
fi
python ${MANAGE} "$@"
python3 ${MANAGE} "$@"

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import os
import sys