diff --git a/frontend/urls.py b/frontend/urls.py index 30f7799b..0cfd1970 100644 --- a/frontend/urls.py +++ b/frontend/urls.py @@ -1,8 +1,8 @@ from django.conf.urls.defaults import * urlpatterns = patterns( - "regluit.frontend.views", - url(r"^$", "home", name="home"), - url(r"^supporter/(?P.+)/$", "supporter", name="supporter"), - url(r"^privacy$", "textpage", {'page': 'privacy'}, name="privacy"), + 'regluit.frontend.views', + url(r'^$', 'home', name='home'), + url(r'^supporter/(?P.+)/$', 'supporter', name='supporter'), + url(r'^privacy$', 'textpage', {'page': 'privacy'}, name='privacy'), )