From d08ec8122899697fcbc7aa2868d9b1baadb24e2b Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sat, 15 Mar 2008 02:25:46 +0000 Subject: queryset-refactor: The EmptyResultSet exception was declared in two places. Removed one of them. git-svn-id: http://code.djangoproject.com/svn/django/branches/queryset-refactor@7245 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/models/sql/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'django/db/models/sql') diff --git a/django/db/models/sql/__init__.py b/django/db/models/sql/__init__.py index ef8706c9df..7310982690 100644 --- a/django/db/models/sql/__init__.py +++ b/django/db/models/sql/__init__.py @@ -1,6 +1,7 @@ from query import * from subqueries import * from where import AND, OR +from datastructures import EmptyResultSet -__all__ = ['Query', 'AND', 'OR'] +__all__ = ['Query', 'AND', 'OR', 'EmptyResultSet'] -- cgit v1.3