static: Remove hardcoded path.
This commit is contained in:
parent
ce1b4b2528
commit
3fe5f09d18
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ from django.http import HttpResponse
|
||||||
from django.template import RequestContext, loader
|
from django.template import RequestContext, loader
|
||||||
from conservancy.apps.fundgoal.models import FundraisingGoal as FundraisingGoal
|
from conservancy.apps.fundgoal.models import FundraisingGoal as FundraisingGoal
|
||||||
|
|
||||||
STATIC_ROOT = '/home/www/website/www/conservancy/static/'
|
STATIC_ROOT = os.path.abspath(os.path.dirname(__file__))
|
||||||
FILESYSTEM_ENCODING = 'utf-8'
|
FILESYSTEM_ENCODING = 'utf-8'
|
||||||
|
|
||||||
def handler(request, errorcode):
|
def handler(request, errorcode):
|
||||||
|
|
Loading…
Reference in a new issue