1
0
mirror of https://github.com/django/django.git synced 2025-10-24 14:16:09 +00:00

[1.1.X] Fixed #13335: Adjusted the r12950 fix to properly handle import errors resulting from nested calls to load_app.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12973 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Karen Tracey
2010-04-14 19:14:23 +00:00
parent 65a9d73069
commit ef6308db01
10 changed files with 43 additions and 5 deletions

View File

@@ -0,0 +1,3 @@
from django.contrib import admin
from admin_scripts.complex_app.models.foo import Foo
admin.site.register(Foo)