mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Fixed #15609 -- Fixed some 'raise' statements to use the newer style syntax. Thanks, DaNmarner
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15811 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
f43b3f58fb
commit
4e25bc71b1
6 changed files with 7 additions and 7 deletions
|
@ -252,7 +252,7 @@ class BasePersonModelFormSet(BaseModelFormSet):
|
|||
person = person_dict.get('id')
|
||||
alive = person_dict.get('alive')
|
||||
if person and alive and person.name == "Grace Hopper":
|
||||
raise forms.ValidationError, "Grace is not a Zombie"
|
||||
raise forms.ValidationError("Grace is not a Zombie")
|
||||
|
||||
class PersonAdmin(admin.ModelAdmin):
|
||||
list_display = ('name', 'gender', 'alive')
|
||||
|
|
|
@ -33,7 +33,7 @@ class BaseQuerysetTest(TestCase):
|
|||
excName = exc.__name__
|
||||
else:
|
||||
excName = str(exc)
|
||||
raise AssertionError, "%s not raised" % excName
|
||||
raise AssertionError("%s not raised" % excName)
|
||||
|
||||
|
||||
class Queries1Tests(BaseQuerysetTest):
|
||||
|
|
|
@ -389,7 +389,7 @@ class Templates(unittest.TestCase):
|
|||
try:
|
||||
return (template_tests[template_name][0] , "test:%s" % template_name)
|
||||
except KeyError:
|
||||
raise template.TemplateDoesNotExist, template_name
|
||||
raise template.TemplateDoesNotExist(template_name)
|
||||
|
||||
cache_loader = cached.Loader(('test_template_loader',))
|
||||
cache_loader._cached_loaders = (test_template_loader,)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue