Changeset ff623c3


Ignore:
Timestamp:
Jun 15, 2014, 9:42:51 PM (11 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master
Children:
f298bd7
Parents:
75ccc48
git-author:
Alex Dehnert <adehnert@…> (06/15/14 17:53:58)
git-committer:
Alex Dehnert <adehnert@…> (06/15/14 21:42:51)
Message:

django.conf.urls.defaults is dead; import its members explicitly

django.conf.urls.defaults no longer exists, so at the top of each urls.py we
need to explicitly import the appropriate former members of that module.

Location:
remit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • remit/finance_core/urls.py

    red4ccc7 rff623c3  
    1 from django.conf.urls.defaults import *
     1from django.conf.urls import patterns, include, url
    22import finance_core.views
    33
  • remit/urls.py

    r5c334f6 rff623c3  
    1 from django.conf.urls import patterns, include
     1from django.conf.urls import patterns, include, url
    22from django.contrib.auth.views import login, logout
    33
  • remit/vouchers/urls.py

    r5c334f6 rff623c3  
    1 from django.conf.urls import patterns, include
     1from django.conf.urls import patterns, include, url
    22from django.contrib.auth.decorators import permission_required
    33import vouchers.views
Note: See TracChangeset for help on using the changeset viewer.