Reputation: 461
When I run the runserver command, the commandline stops at:
from django.utils import importlib, six, dateparse
And doesn't go any further. The process never ends and it won't stop loading. What would cause it to freeze at that point?
Upvotes: 0
Views: 111
Reputation: 461
Turns out I had one or two:
django.setup()
lines sprinkled in some files. When I removed them, the server was able to run again.
Upvotes: 1