I can not understand why I can not link the url? urls.py
# -*- coding: utf-8 -*- from django.conf.urls import * from mysite.views import hello urlpatterns = patterns('', # error here, why? ('^hello/$', hello), )
views.py
# -*- coding: utf-8 -*- from django.http import HttpResponse def hello(request): return HttpResponse("Здравствуй, Мир")
He did everything according to the book, one to one.