I am trying to migrate a very old Django/Python app(version 2.6) to new OS version. Due to dependency limitations I cannot migrate the app to Python3. While migrating template issue came in /lib/python2.7/site-packages/django/forms/models.py in new, line 215.
Error that came is as follows:
Unknown field(s) (a, l, _) specified for Template
Request Method: | GET |
---|
|Django Version:|1.4.3|
|Exception Type:|FieldError|
|Exception Value:|Unknown field(s) (a, l, _) specified for Template|
|Exception Location:|/opt/virtualenv/lib/python2.7/site-packages/django/forms/models.py in new, line 215|
|Python Executable:|/usr/bin/python|
|Python Version:|2.7.5|
Any ideas how can I resolve this.
Thanks