Fixed bug introduced by fixing a pylint error
Here first was very much intentionally set to None, as later on we
check if it is none in an 'first if first else exception' statement.
Patch by: Sverre Rabbelier
from django.conf.urls.defaults import *
urlpatterns = patterns('django.contrib.flatpages.views',
(r'^(?P<url>.*)$', 'flatpage'),
)