Revert "quote style"

This reverts commit 88abca0b33.
pull/1/head
eric 2011-09-29 19:32:14 -04:00
parent 88abca0b33
commit 459ffbc549
1 changed files with 4 additions and 4 deletions

View File

@ -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_username>.+)/$', 'supporter', name='supporter'),
url(r'^privacy$', 'textpage', {'page': 'privacy'}, name='privacy'),
"regluit.frontend.views",
url(r"^$", "home", name="home"),
url(r"^supporter/(?P<supporter_username>.+)/$", "supporter", name="supporter"),
url(r"^privacy$", "textpage", {'page': 'privacy'}, name="privacy"),
)