﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
1554	[patch] shortcuts.get_list_or_404 uses old model API	Christopher Lenz <cmlenz@…>	Adrian Holovaty	"The (trivial) fix is:

{{{
Index: django/shortcuts/__init__.py
===================================================================
--- django/shortcuts/__init__.py        (revision 226)
+++ django/shortcuts/__init__.py        (working copy)
@@ -17,7 +17,7 @@
         raise Http404
 
 def get_list_or_404(klass, **kwargs):
-    obj_list = klass._default_manager.get_list(**kwargs)
+    obj_list = klass._default_manager.filter(**kwargs)
     if not obj_list:
         raise Http404
     return obj_list
}}}
"	defect	closed	Core (Other)	magic-removal	normal	fixed			Unreviewed	1	0	0	0	0	0
