In soc.views.models.notification module remove unused imports, add missing white space, change list() method definition to comply with base View list() method declaration. Add missing Meta class docstring.
Patch by: Pawel Solyga
from django.conf.urls.defaults import *
urlpatterns = patterns('',
(r'^$', 'examples.views.index'),
(r'^hello/', include('examples.hello.urls')),
)