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
context_processors = settings.TEMPLATE_CONTEXT_PROCESSORS
for context_processor in required:
if context_processor not in context_processors:
logger.warn(
'Required context processor %s wasnt found', context_processor)
For me worked to comment lines 39-41 in views.py: # validation to ensure the context processor is enabled if not context.get('FACEBOOK_APP_ID'): message = 'Please specify a Facebook app id and ensure the context processor is enabled' raise ValueError(message)
Receiving the following warning which shouldn't be there in django 1.8:
The
TEMPLATE_CONTEXT_PROCESSORS
setting is deprecated starting in django 1.8:It was replaced in favor of a TEMPLATES setting where the dict needs to have context_processors defined as an options key:
This line of code [1] is what needs to change:
[1]
Django-facebook/django_facebook/models.py
Line 57 in d31eb10
The text was updated successfully, but these errors were encountered: