This is the error I am getting
The view djangocricket.Cricket.views.home didn't return an HttpResponse object.
here is my views.py
from django.http import HttpResponse
# Create your views here.
def home(request):
HttpResponse('Hello World')
it is exactly as the tutorial says. 😮
Should be:
You forget
returnpython reserved word.