hovel / pybbm

Django forum solution. Tested, documented, shipped with example project.
BSD 2-Clause "Simplified" License
225 stars 151 forks source link

Use django.forms.utils for Django 1.9 compatibility. #203

Closed audreyfeldroy closed 8 years ago

audreyfeldroy commented 8 years ago

This change is needed for PyBBM to work on Django 1.9.

django.forms.utils is removed in Django 1.9. Details: https://docs.djangoproject.com/en/1.9/releases/1.9/

audreyfeldroy commented 8 years ago

This breaks on Django 1.6 and earlier.

If Django 1.6 and earlier support is still needed, we can resolve this with a shim similar to the one Django 1.8 had. Let me know if you need this added to the PR.

lampslave commented 8 years ago

Thank you.