hovel / pybbm

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

The module is called django.form.utils with an "s" at the end in Django 1.9 #236

Closed goeranu closed 8 years ago

goeranu commented 8 years ago

I installed pybbm on a Fedora system with Python 3.5 and Django 1.9. It coudn't import django.forms.util in views.py. Digging a little, I found that it had been renamed in version 1.7 and is unsupported since 1.9.

For my personal purposes, I just added an “s”. For the distribution, you might wish to have a if django.VERSION >= (1,7) guard around the import, I imagine.

goeranu commented 8 years ago

This is fixed in commit 6ad348a1e2481a1cb82672baebf8d0c5cb5acfcc from November last year.

It seems all the issues I found have already been fixed in current git head. May I suggest you cut a new release? It might save new users a some trouble, and save you future pointless bug reports.