Ciao ragazzi, manco ho inziato a lavorare con django che incontro le prime difficoltà e spero che qualcuno riesca ad aiutarmi

Ho installato python e django e sono andato a creare un piccolo hello world di prova. Ho letto che bisogna modificare urls.py del progetto creato inserendo l'espressione che individua l'url e ho fatto così

codice:
 (r'^hello/$', "views.hello"),
poi ho creato nella directory del progetto un file views.py dove ho inserito

codice:
 
from django.http import HttpResponse
def hello(request):
return HttpResponse("Hello World")
ma quando faccio girare il server 127.0.0.1:8000/hello/ mi esce il seguente errore

IndentationError at /hello/

('expected an indented block', ('/home/mark/hello/views.py', 3, 6, 'return HttpResponse("Hello World")\n'))

Request Method: GET
Request URL: http://127.0.0.1:8000/hello/
Exception Type: IndentationError
Exception Value:

('expected an indented block', ('/home/mark/hello/views.py', 3, 6, 'return HttpResponse("Hello World")\n'))

Exception Location: /usr/local/lib/python2.6/dist-packages/django/core/urlresolvers.py in get_callable, line 57
Python Executable: /usr/bin/python
Python Version: 2.6.2
Python Path: ['/home/mark/hello', '/usr/lib/python2.6', '/usr/lib/python2.6/plat-linux2', '/usr/lib/python2.6/lib-tk', '/usr/lib/python2.6/lib-old', '/usr/lib/python2.6/lib-dynload', '/usr/lib/python2.6/dist-packages', '/usr/lib/python2.6/dist-packages/PIL', '/usr/lib/python2.6/dist-packages/gst-0.10', '/var/lib/python-support/python2.6', '/usr/lib/python2.6/dist-packages/gtk-2.0', '/var/lib/python-support/python2.6/gtk-2.0', '/usr/local/lib/python2.6/dist-packages']
Server time: Sun, 12 Jul 2009 06:40:35 -0500
Dove sbaglio?