comparison gpp/podcast/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 bcc4e8cf841b
children
comparison
equal deleted inserted replaced
573:bcc4e8cf841b 574:ddd69a8e07c7
1 """ 1 """
2 urls for the podcast application 2 urls for the podcast application
3 3
4 """ 4 """
5 from django.conf.urls.defaults import * 5 from django.conf.urls import patterns, url
6 from django.views.decorators.cache import cache_page 6 from django.views.decorators.cache import cache_page
7 7
8 from podcast.views import feed 8 from podcast.views import feed
9 9
10 10