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

fixed warnings

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