Mercurial > public > sg101
diff gpp/ygroup/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 | 0c18dfb1da1c |
children |
line wrap: on
line diff
--- a/gpp/ygroup/urls.py Wed May 02 21:00:12 2012 -0500 +++ b/gpp/ygroup/urls.py Thu May 03 20:45:16 2012 -0500 @@ -2,10 +2,10 @@ urls.py - URLs for the ygroup application. """ -from django.conf.urls.defaults import * -from django.views.generic import ListView, DetailView +from django.conf.urls import patterns, url +from django.views.generic import DetailView -from ygroup.models import Thread, Post +from ygroup.models import Post from ygroup.views import ThreadIndexView, ThreadView