On 9/15/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> Hi all,
>
> i've got an app named liger with a settings.py file which in
> INSTALLED_APPS has:
>
> 'liger.profiles'... along with other apps

First, you only point to the app, not the models in your app. Second,
you need to start from a place that is on your pythonpath. If liger is
on your pythonpath, then just 'liger' will work, However, it's more
likely that is not the case, so you'll need to do something like
'yourproject.liger'

if neither of those work, open a python shell and try:
    import youproject.liger
or
    import liger

Experiment with your path till you find something that works. Whatever
works is what you should use in INSTALLED_APPS.



-- 
----
Waylan Limberg
[EMAIL PROTECTED]

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to