1
0
mirror of https://github.com/django/django.git synced 2025-06-05 03:29:12 +00:00

magic-removal: Removed BadKeywordArguments exception, which wasn't being used.

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2109 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-01-23 02:37:01 +00:00
parent fcdc826e2c
commit 766ee9aeb2
2 changed files with 1 additions and 4 deletions

View File

@ -8,7 +8,7 @@ from django.db.models.manager import Manager
from django.db.models.base import Model, AdminOptions from django.db.models.base import Model, AdminOptions
from django.db.models.fields import * from django.db.models.fields import *
from django.db.models.fields.related import * from django.db.models.fields.related import *
from django.db.models.exceptions import FieldDoesNotExist, BadKeywordArguments from django.db.models.exceptions import FieldDoesNotExist
from django.db.models import signals from django.db.models import signals
from django.utils.functional import curry from django.utils.functional import curry
from django.utils.text import capfirst from django.utils.text import capfirst

View File

@ -1,5 +1,2 @@
class FieldDoesNotExist(Exception): class FieldDoesNotExist(Exception):
pass pass
class BadKeywordArguments(Exception):
pass