It is not related to SVN, I am using git and have the same problem. Apache will cache a specific part of your site.
Delete all *.pyc files and restart apache.
I have several (Ubuntu) aliases created to help me do this.
# Services # Restart apache2 alias apre='sudo service apache2 graceful' # Delete files # Delete all *.pyc files alias pydel='find . -type f -name "*.pyc" -exec rm -f {} \;' # Combinations # Delete all *.pyc files then restart apache2 alias pyre='pydel && apre'
Alternatively, use runserver , as this will lead to changes when saving the file in your Django project.
rockingskier Sep 25 '12 at 8:05 2012-09-25 08:05
source share