Mercurial > public > sg101
diff potd/urls.py @ 1028:5ba2508939f7
Django 1.8 changes; first batch.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 15 Dec 2015 21:01:07 -0600 |
parents | ee87ea74d46b |
children |
line wrap: on
line diff
--- a/potd/urls.py Mon Dec 14 20:42:20 2015 -0600 +++ b/potd/urls.py Tue Dec 15 21:01:07 2015 -0600 @@ -1,9 +1,12 @@ """ URLs for the POTD application. """ -from django.conf.urls import patterns, url +from django.conf.urls import url -urlpatterns = patterns('potd.views', - url(r'^$', 'view', name='potd-view'), - url(r'^archive/(\d+)/$', 'archive', name='potd-archive'), -) +import potd.views + + +urlpatterns = [ + url(r'^$', potd.views.view, name='potd-view'), + url(r'^archive/(\d+)/$', potd.views.archive, name='potd-archive'), +]