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

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

View File

@ -3,6 +3,3 @@ class FieldDoesNotExist(Exception):
class BadKeywordArguments(Exception): class BadKeywordArguments(Exception):
pass pass
class BadCommand(Exception):
pass

View File

@ -1,7 +1,6 @@
from django.core.exceptions import ObjectDoesNotExist from django.core.exceptions import ObjectDoesNotExist
from django import forms from django import forms
from django.db.models.fields import FileField, AutoField from django.db.models.fields import FileField, AutoField
from django.db.models.exceptions import BadCommand
from django.dispatch import dispatcher from django.dispatch import dispatcher
from django.db.models import signals from django.db.models import signals
from django.utils.functional import curry from django.utils.functional import curry