File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ Simple terms and condition notify app
55
66## Install
77``` shell
8- $ pip install -e git+https://github.com/rouxcode/django-tac@0.1.2 #egg=django-tac
8+ $ pip install -e git+https://github.com/rouxcode/django-tac@0.1.3 #egg=django-tac
99```
1010
1111## Usage
Original file line number Diff line number Diff line change 11from __future__ import unicode_literals
22
33
4- __version__ = '0.1.2 '
4+ __version__ = '0.1.3 '
55default_app_config = 'tac.apps.TACConfig'
Original file line number Diff line number Diff line change 33from django import template
44from django .conf import settings
55from django .core .exceptions import ImproperlyConfigured
6- from django .urls import reverse
6+ try :
7+ from django .urls import reverse
8+ except Exception :
9+ from django .core .urlresolvers import reverse
710from django .utils .translation import get_language
811
912from .. import conf
You can’t perform that action at this time.
0 commit comments