diff gpp/gcalendar/urls.py @ 574:ddd69a8e07c7

For Django 1.4, use django.conf.urls instead of django.conf.urls.defaults.
author Brian Neal <bgneal@gmail.com>
date Thu, 03 May 2012 20:45:16 -0500
parents dbd703f7d63a
children
line wrap: on
line diff
--- a/gpp/gcalendar/urls.py	Wed May 02 21:00:12 2012 -0500
+++ b/gpp/gcalendar/urls.py	Thu May 03 20:45:16 2012 -0500
@@ -1,7 +1,7 @@
 """
 URLs for the gcalendar application.
 """
-from django.conf.urls.defaults import *
+from django.conf.urls import patterns, url
 
 urlpatterns = patterns('gcalendar.views',
     url(r'^$', 'index', name='gcalendar-index'),
@@ -12,4 +12,3 @@
     url(r'^thanks/add/$', 'add_thanks', name='gcalendar-add_thanks'),
     url(r'^thanks/change/$', 'edit_thanks', name='gcalendar-edit_thanks'),
 )
-# vim: ts=4 sw=4