[Django]-Incomprehensible Django Runserver Error

5👍

Based on this line:

File "C:\Users\kiwi\Dropbox\Programming Projects\Django Projects\ponysite\forum\admin.py" in
1. from forum.models  import Category, Thread, Post, Report, Subscription, Ban

Django is finding in forum/admin.py

from forum.models  import Category, Thread, Post, Report, Subscription, Ban

Note the Ban at the end that is not defined in models. Remove it and the error should be gone.

Leave a comment