Skip to content

Commit

Permalink
Correct error in projectname
Browse files Browse the repository at this point in the history
  • Loading branch information
Jethet committed Sep 21, 2019
1 parent 052efe9 commit dd850f8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions elevador/settings.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Django settings for testelevador project.
Django settings for elevador project.
Generated by 'django-admin startproject' using Django 2.2.2.
Expand Down Expand Up @@ -49,7 +49,7 @@
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]

ROOT_URLCONF = 'testelevador.urls'
ROOT_URLCONF = 'elevador.urls'

TEMPLATES = [
{
Expand All @@ -67,7 +67,7 @@
},
]

WSGI_APPLICATION = 'testelevador.wsgi.application'
WSGI_APPLICATION = 'elevador.wsgi.application'


# Database
Expand Down
2 changes: 1 addition & 1 deletion elevador/urls.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""testelevador URL Configuration
"""elevador URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/2.2/topics/http/urls/
Expand Down
4 changes: 2 additions & 2 deletions elevador/wsgi.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
WSGI config for testelevador project.
WSGI config for elevador project.
It exposes the WSGI callable as a module-level variable named ``application``.
Expand All @@ -11,6 +11,6 @@

from django.core.wsgi import get_wsgi_application

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'testelevador.settings')
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'elevador.settings')

application = get_wsgi_application()
2 changes: 1 addition & 1 deletion manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


def main():
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'testelevador.settings')
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'elevador.settings')
try:
from django.core.management import execute_from_command_line
except ImportError as exc:
Expand Down

0 comments on commit dd850f8

Please sign in to comment.