Luke Plant wrote: > On Wednesday 03 May 2006 17:51, Kenneth Gonsalves wrote: > >> when making major upgrades, sometimes old .pyc files remain giving >> errors like this. Nuking subversion is the best solution > > Or, if you use *nix this will be a bit less drastic and faster: > > find your/django/src/dir -name '*.pyc' | xargs rm > > Luke >
or without the pipe: find /path -name '*.pyc' -exec rm {} \; Note the escaped semicolon. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---