diff options
author | Dan McGee <dan@archlinux.org> | 2010-10-05 11:54:48 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-10-05 11:55:26 -0500 |
commit | 3972ba3bd28a3c379649df7f6805bd2a6ef3c5f8 (patch) | |
tree | 1eb7a4e74eb239a484d90cc44bf793db0c057766 | |
parent | 79a5f0334c8766ef3707b44332e4f059cda8cd7a (diff) |
Make manage.py use python2 binary
Signed-off-by: Dan McGee <dan@archlinux.org>
-rwxr-xr-x | manage.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 + from django.core.management import execute_manager + try: import settings # Assumed to be in the same directory. except ImportError: |