Hi Adrian. Super :-) This did the trick. Many thanks!

Regards
David



Adrian Holovaty wrote:
On 12/15/05, David Pratt <[EMAIL PROTECTED]> wrote:

Can someone fill in the blank. Many thanks.
[...]
from django.core import management

# Setup up an app
management.init()
management.install(my_app)

# Admin install ???


Hi David,

You want this:

    from django.core import meta
    admin = meta.get_app('admin')
    management.install(admin)

Adrian

--
Adrian Holovaty
holovaty.com | djangoproject.com | chicagocrime.org

Reply via email to