[Fixed]-Django1.9 – Makemigration Error: app label has extra "dot"

1👍

Nothing more is needed. Just add "app.ticketmgr", "app.comm" to INSTALLED_APPS.

0👍

BasePriority does not appear in your project directories. Maybe it’s a model?

The installed app line should be:

app.ticketmgr

Since BasePriority does not exists, django gets 3 arguments instead of the 2 required for app_label,model_name. The “BasePriority” is the third argument, which excepts.

Leave a comment