On Nov 3, 4:58 am, stryderjzw <[EMAIL PROTECTED]> wrote:
> HI,
>
> This is semi-off topic, but it is a python question.
>
> I'm trying to use some of the generic django applications, like django-
> tagging. Taking django-tagging, for example, it requires me to symlink
> the source folder to "site-packages/tagging". However, I want to keep
> site-packages structured and keep all the django packages named the
> same, so I want to name the folder "site-packages/django-tagging".
> This gives me all sorts of ImportErrors.
>
> Am I stuck with what the package requires me to name the folder? Is
> there some way of aliasing packages or renaming them?
>
> Cheers!
> Justin

Package names must be valid Python identifiers - so they can't contain
hyphens ('-'). django_tagging would be OK.
--
DR.
--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to