I'm getting the following warnings after updating to latest version of Django:
/Users/git/ios_notifications/forms.py:10: RemovedInDjango18Warning: Creating a ModelForm without either the 'fields' attribute or the 'exclude' attribute is deprecated - form DeviceForm needs updating
class DeviceForm(forms.ModelForm):
/Users/git/ios_notifications/forms.py:15: RemovedInDjango18Warning: Creating a ModelForm without either the 'fields' attribute or the 'exclude' attribute is deprecated - form APNServiceForm needs updating
class APNServiceForm(forms.ModelForm):
pydev debugger: process 18452 is connecting
/Users/git/ios_notifications/forms.py:10: RemovedInDjango18Warning: Creating a ModelForm without either the 'fields' attribute or the 'exclude' attribute is deprecated - form DeviceForm needs updating
class DeviceForm(forms.ModelForm):
/Users/git/ios_notifications/forms.py:15: RemovedInDjango18Warning: Creating a ModelForm without either the 'fields' attribute or the 'exclude' attribute is deprecated - form APNServiceForm needs updating
class APNServiceForm(forms.ModelForm):
I'm getting the following warnings after updating to latest version of Django:
Are there any updates for this i'm not aware of?