-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeError: coercing to Unicode: need string or buffer, NoneType found #25
Comments
I can confirm this:
|
Test with |
Hello, The same for me:
Indexing 13 django.utils.functional.proxy object at 0x37fb110 |
Had the same problem. Changing the line to |
Hello,
I thank you for the plugin in django-cms.
I have installed the version 0.6.3. I was the problem for the indexation with the command django: rebuild_index
The problem come here : text += obj.get_meta_keywords() if hasattr(obj, 'get_meta_keywords') else u'' in search_indexes.py.
I replace this line by text += obj.get_meta_keywords() or u''
It's good after.
Thanks.
The text was updated successfully, but these errors were encountered: