stephenmuss / django-ios-notifications

Django iOS Notifications makes it easy to send push notifications to iOS devices
Other
230 stars 72 forks source link

Fix ModelForm deprecation warnings when using Django>=1.7 #64

Closed stnatic closed 9 years ago

stnatic commented 9 years ago

The correct way would be to use:

fields = '__all__'

Unfortunately, it was introduced in Django==1.6, and this library still supports the old versions of Django and therefore fix has to look like this:

exclude = []
stephenmuss commented 9 years ago

Thanks for the PR.