forked from jtauber-archive/django-notification
-
Notifications
You must be signed in to change notification settings - Fork 209
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
Incompatibility with Django 1.10 (render_to_string changed) #68
Comments
I am working on a fix for this in fix-template-deprecations. The fix will introduce a backwards-incompatible change with plain text notification templates and auto-escaping. |
When do you plan to merge this? |
@bnisevic: We've just released @thecybil thanks for the report! |
Thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm getting an exception when trying to call send().
The dictionary and context_instance parameters were removed from django.template.loader.render_to_string() in Django 1.10 (https://docs.djangoproject.com/en/1.10/releases/1.10/). The new docs on render_to_string are here: http://django.readthedocs.io/en/latest/topics/templates.html#django.template.loader.render_to_string).
However, pinax/notifications/backends/email.py calls it like so:
The text was updated successfully, but these errors were encountered: