blob: 4da5a1b1ae770632d09188b0e2ae7c4124506480 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from settings import *
except ImportError, e:
print 'Unable to load settings.py:', e
SITE_ID = 2
DEBUG = True
TEMPLATE_DEBUG = True
|