Hi,
I'm facing difficulty trying to get my Django web app to reload properly upon updating urls.py and views.py. Static files do refresh in my browser but not the .py files, it seems.
Previously I had this problem when trying to create new urls on urls.py, and was facing constant 404s. I've managed to work around this by forcing the .py files to reload by adding a new arbitrary variable in views.py and loading that through a Django template in a page, as suggested at http://stackoverflow.com/questions/18234893/django-urls-inconsistent-and-now-returning-404 where I asked a question.
So that worked then, but now, it seems like that fix is not working anymore and my changes in views.py and urls.py cannot be reflected in my browser.
I'm sorry but I'm unable to make logic out of these symptoms. Any suggestions?