Moving URL stuff up one level, reflecting Django 1.5 changes

This commit is contained in:
Jökull Sólberg Auðunsson 2012-11-29 09:19:05 +00:00
parent df814b1b93
commit 8806932095
3 changed files with 4 additions and 4 deletions

4
coffin/conf/urls.py Normal file
View File

@ -0,0 +1,4 @@
from django.conf.urls import *
handler404 = 'coffin.views.defaults.page_not_found'
handler500 = 'coffin.views.defaults.server_error'

View File

@ -1,4 +0,0 @@
from django.conf.urls.defaults import *
handler404 = 'coffin.views.defaults.page_not_found'
handler500 = 'coffin.views.defaults.server_error'