[Django]-Django 1.3 test errors: ValueError: list.remove(x): x not in list

9👍

You’ve added the app to INSTALLED_APPS, but you haven’t added the relevant context processor to TEMPLATE_CONTEXT_PROCESSORS – it needs to include "django.contrib.messages.context_processors.messages".

Leave a comment