I’m doing a massive code reorg of my Django project, to split it into apps.
After having moved a lot of code around, I get this error when I try to run the project:
Error: no module named foobar
Note that both foo and bar are names of Django apps in my project, but I have nothing like foobar around.
grep foobar . -r = no results.
find . -name '*foobar*' = no results.
I’m stumped. Does anybody have ideas?
you are lacking a comma in your installed app in settings.py between foo and bar
INSTALLED_APPS=[‘foo’,’bar’]