Hi there.
While trying to go into my admin site, i keep getting import error at /admin/ no module named tools. The thing is, i had an app named tools, but removed it from the project. But am still getting the import error at admin. and random apps. A bit of googling on stackoverflow suggested deleting all pyc files as they contain old data still being referenced, which makes sense. But after removing every pyc file i could see in my current project directory i still get the error.
Heres where it gets weird.
I am using django_tables2. I also have a books app which tracks books etc. I created a table class for the books and specified a table column to be a link column. When viewing the books app i get the import error at /books/ no module named tools, same at import error at /admin/ no module named tools. But if i change the LinkColumn in the books table class to a normal column, just changing the verbose name, the error goes away with the books app but is still with admin?? I have no clue whats going on here.
Edit: Even after starting a new tools app and registering it in admin.py its the same error. The only thing i can think of its a path error but how and why, if it can find the other apps in the same directory?