[Django]-Django settings.py statement executed twice

7👍

https://stackoverflow.com/a/2110584/1730167

If you run ./manage.py runserver --noreload it should stop that from happening. Django uses two processes for the reloading feature hence why you are getting the double printing.

👤Harben

Leave a comment