- changed status to open
Since Django update, doing something like {{ event.access_at }} doesn't format the date using the default format. It seems as if it's getting it direct from the database with no formatting at all. Almost as if the __str function has been removed/changed for dates has been removed/changed in the update.
This is an issue in the activity feed, iCal event description, and potentially other places. Workaround is adding |date but that's not ideal for the activity feed where everything is field-type agnostic.

Fixed in c6e442b - caused by linebreaksbr