Exception Value: unexpected indent (views.py, line 2)

Fermé
ciranox Messages postés 387 Date d'inscription vendredi 11 juillet 2008 Statut Membre Dernière intervention 28 février 2016 - 29 mai 2013 à 16:45
ciranox Messages postés 387 Date d'inscription vendredi 11 juillet 2008 Statut Membre Dernière intervention 28 février 2016 - 29 mai 2013 à 18:26
Bonjour,

j'ai un sérieux problème avec les fichiers url et views de django. je suis en train de suivre ce tutoriel (
http://blog.developpez.com/cs-blog/p11960/framework/django-premier-pas</code> ) malheureusement ça ne marche pas.


voici le message d'erreur dans le navigateur:


IndentationError at /

unexpected indent (views.py, line 2)

Request Method: GET
Request URL: http://127.0.0.1:8000/
Django Version: 1.5.1
Exception Type: IndentationError
Exception Value:

unexpected indent (views.py, line 2)

Exception Location: C:\Python27\lib\site-packages\django\utils\importlib.py in import_module, line 35
Python Executable: C:\Python27\python.exe
Python Version: 2.7.5
Python Path:

['C:\\mes_sites',
'C:\\Windows\\system32\\python27.zip',
'C:\\Python27\\DLLs',
'C:\\Python27\\lib',
'C:\\Python27\\lib\\plat-win',
'C:\\Python27\\lib\\lib-tk',
'C:\\Python27',
'C:\\Python27\\lib\\site-packages']


voici le code dans le fichier views:

from django.http import HttpResponse
    def home(request):
        return HttpResponse("Hello, world.")


et voici le code dans le fichier url:
from django.conf.urls import patterns, include, url

# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
# admin.autodiscover()

urlpatterns = patterns('',

 url(r'^$','mes_sites.escort.views.home', name='home'),
                       
    # Examples:
    # url(r'^$', 'mes_sites.views.home', name='home'),
    # url(r'^mes_sites/', include('mes_sites.foo.urls')),

    # Uncomment the admin/doc line below to enable admin documentation:
    # url(r'^admin/doc/', include('django.contrib.admindocs.urls')),

    # Uncomment the next line to enable the admin:
    # url(r'^admin/', include(admin.site.urls)),






j'ai vraiment besoin de votre aide.
merci

1 réponse

ciranox Messages postés 387 Date d'inscription vendredi 11 juillet 2008 Statut Membre Dernière intervention 28 février 2016
29 mai 2013 à 18:26
y a t il quelqu'un de gentille qui accepte de m'aider ?
0