If you haven't done it already be sure to try this:
http://www.mail-archive.com/django-users@googlegroups.com/msg06631.html

It's a problem with svn updates leaving old .pyc files lying around.
I noticed strange problems a couple of times that were fixed with this,
so now I do it routinely after every update.

I use this version:
find /home/mydjangosrcdir -name '*.pyc' -print0 | xargs -0 rm

There's a similar thing in the cookbook here:
http://code.djangoproject.com/wiki/CookBookScripts

Derek


--~--~---------~--~----~------------~-------~--~----~
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