Skip to content
Snippets Groups Projects
Commit 10d92b42 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

fixed warnings

parent 1d44cd89
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,6 @@ import os.path
PROJECT_DIR = os.path.dirname(__file__)
DEBUG = True
TEMPLATE_DEBUG = DEBUG
ADMINS = ()
......@@ -47,7 +46,7 @@ TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
'templates'
os.path.join(PROJECT_DIR, 'templates')
],
'APP_DIRS': True,
'OPTIONS': {
......@@ -74,10 +73,6 @@ MIDDLEWARE_CLASSES = (
ROOT_URLCONF = 'pv.urls'
TEMPLATE_DIRS = (
os.path.join(PROJECT_DIR, "templates"),
)
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment