Django Project Restructure: Can't Import App
I'm trying to restructure my project to match the recommendation in the latest Two Scoops of Django book (for Django 1.11). After completing the restructure, my app can't be import
Solution 1:
Replacing secureDash.dash.apps.DashConfig
with secureDash.dash
in INSTALLED_APPS
should fix it.
Post a Comment for "Django Project Restructure: Can't Import App"