You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rollyourown/seo/options.py", line 4, in
from django.db.models.options import get_verbose_name
this error is occurred due to some changes in django 1.7
get_verbose_name function is changed from db.models.options.get_verbose_name to utils.text.camel_case_to_spaces
Solution
comment this line
from django.db.models.options import get_verbose_name
Add this line
from django.utils.text import camel_case_to_spaces as get_verbose_name
The text was updated successfully, but these errors were encountered:
rollyourown/seo/options.py", line 4, in
from django.db.models.options import get_verbose_name
this error is occurred due to some changes in django 1.7
get_verbose_name function is changed from db.models.options.get_verbose_name to utils.text.camel_case_to_spaces
Solution
comment this line
from django.db.models.options import get_verbose_name
Add this line
from django.utils.text import camel_case_to_spaces as get_verbose_name
The text was updated successfully, but these errors were encountered: