This website requires JavaScript.
Explore
Help
Register
Sign In
mirrors
/
django
mirror of
https://github.com/django/django.git
Watch
1
Star
0
Fork
You've already forked django
0
Code
Issues
24
Releases
Wiki
Activity
86c248aa64
django
/
tests
/
admin_scripts
/
complex_app
/
admin
/
foo.py
7 lines
90 B
Python
Raw
Normal View
History
Unescape
Escape
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/trunk@12972 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-04-14 19:10:27 +00:00
from
django
.
contrib
import
admin
Convert much of the regression tests to use absolute imports. There's still work to be done though. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16976 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-10-13 18:51:33 +00:00
from
.
.
models
.
foo
import
Foo
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/trunk@12972 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-04-14 19:10:27 +00:00
admin
.
site
.
register
(
Foo
)