Is this a Django 1.4 installation? I ask that because it looks like
you have Python 2.4,
and Django 1.4 will NOT work with Python 2.4, requires at least Python 2.5.
Diego
There's a chance you have a logging module in your PATH that is shadowing the default package.
Did you create an app or project named logging by any chance?
Ideas:
- From an interactive python shell, import logging and check logging.__file__
In my Ubuntu install, I get:
/usr/lib/python2.7/logging/__init__.pyc
- Install virtualenv and create an environment using the --no-site-packages and install nothing but Django. Try running it from there and see what happens. Ideally, you'll want to use virtual environments always.
I'm hoping one of these solutions will help, but I'm really just guessing.
Cheers,
AT
-- Sent from my phone, please excuse any typos. --
> --
> You received this message because you are subscribed to the Google Groups "Django users" group.
> To post to this group, send email to django...@googlegroups.com.
> To unsubscribe from this group, send email to django-users...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
>