Try the correct NoReverseMatch location.

This commit is contained in:
Marc Tamlyn 2013-02-06 13:10:54 +00:00
parent bd7977eed7
commit 11610e7c3c
2 changed files with 3 additions and 4 deletions

View File

@ -1,6 +1,6 @@
from __future__ import unicode_literals
from django.core.exceptions import ObjectDoesNotExist, ValidationError, NoReverseMatch
from django.core.urlresolvers import resolve, get_script_prefix
from django.core.exceptions import ObjectDoesNotExist, ValidationError
from django.core.urlresolvers import resolve, get_script_prefix, NoReverseMatch
from django import forms
from django.forms import widgets
from django.forms.models import ModelChoiceIterator

View File

@ -1,7 +1,6 @@
from __future__ import unicode_literals, absolute_import
from django import template
from django.core.exceptions import NoReverseMatch
from django.core.urlresolvers import reverse
from django.core.urlresolvers import reverse, NoReverseMatch
from django.http import QueryDict
from django.utils.html import escape
from django.utils.safestring import SafeData, mark_safe