Use python2 in manage.py and Makefile
[xnet] / Makefile
1 MANAGE_PY = python2 manage.py
2
3
4 default: all
5
6
7 all:
8
9
10 run:
11 $(MANAGE_PY) runserver
12
13
14 test:
15 $(MANAGE_PY) test example
16
17 resetdb:
18 rm -f xnet/db.sqlite
19 $(MANAGE_PY) syncdb --noinput