I am working on a Django project and this error occurs when I try to run any control commands, such as: python manage.py validate --settings ord.settings.development , python manage.py syncdb --settings ord.settings.development . The project uses Django 1.5 Error: AttributeError: 'Nonetype' object has no attribute '_info' . No other output is specified.
Base project settings file: https://gist.github.com/anonymous/5c0fede63b2724d7880b
Development Settings: https://gist.github.com/anonymous/f60b90dcf573b0a7b920
I replaced sensitive settings x
Any idea what could be wrong?
Some additional information, when I comment on LANGUAGE_CODE settings, some commands like validate , runserver , shell work fine, but syncdb and migrate work with an error: DatabaseError: current transaction is aborted, commands ignored until end of transaction block
Traceback: https://gist.github.com/anonymous/bc3364ae5ba511566871
source share