~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to tracking/middleware.py

  • Committer: franku
  • Date: 2018-04-08 14:40:17 UTC
  • mto: This revision was merged to the branch mainline in revision 491.
  • Revision ID: somal@arcor.de-20180408144017-mr8e97otl93zk4wy
django.conf.urlresolvers -> django.urls

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
from django.conf import settings
7
7
from django.contrib.auth.models import AnonymousUser
8
8
from django.core.cache import cache
9
 
from django.core.urlresolvers import reverse, NoReverseMatch
 
9
from django.urls import reverse, NoReverseMatch
10
10
from django.db.utils import DatabaseError
11
11
from django.http import Http404
12
12