I have been using django-rosetta for a while in my project, but when I added a new app ExcursionsManagerApp, I get this error when I try to access rosetta's admin page:
AttributeError at /es/rosetta/files/project/
module 'ExcursionsManagerApp' has no attribute '__file__'
I don't know what causes the error.
Ok, the problem was that my app directory was missing the
__init__.pyfile. I added it, and everything started to work again.