[Answered ]-During massive Django code reorg, "No module named foobar"; foo and bar are part of my app, but not foobar

2👍

you are lacking a comma in your installed app in settings.py between foo and bar

INSTALLED_APPS=[‘foo’,’bar’]

Leave a comment