Rolled back [2390] temporarily to test against some other edge cases

git-svn-id: http://code.djangoproject.com/svn/django/trunk@2391 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-02-25 17:18:27 +00:00
parent 79633b280c
commit de66a3a7da
1 changed files with 0 additions and 1 deletions

View File

@ -1352,7 +1352,6 @@ def _get_where_clause(lookup_type, table_prefix, field_name, value):
raise TypeError, "Got invalid lookup_type: %s" % repr(lookup_type) raise TypeError, "Got invalid lookup_type: %s" % repr(lookup_type)
def function_get_object(opts, klass, does_not_exist_exception, **kwargs): def function_get_object(opts, klass, does_not_exist_exception, **kwargs):
kwargs['order_by'] = ()
obj_list = function_get_list(opts, klass, **kwargs) obj_list = function_get_list(opts, klass, **kwargs)
if len(obj_list) < 1: if len(obj_list) < 1:
raise does_not_exist_exception, "%s does not exist for %s" % (opts.object_name, kwargs) raise does_not_exist_exception, "%s does not exist for %s" % (opts.object_name, kwargs)