You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Package will not work in Django 1.9 due to deprecated import in forms:
`django_json_field-0.5.7-py2.7.egg/json_field/forms.py:5: RemovedInDjango19Warning: The django.forms.util module has been renamed. Use django.forms.utils instead.``
There is no necessary to import django.forms.util(s), because you're using it to raise ValidationError. Just import forms and change util.ValidationError to forms.ValidationError, or import ValidationError from django.core.exceptions.
The text was updated successfully, but these errors were encountered:
Package will not work in Django 1.9 due to deprecated import in
forms
:`django_json_field-0.5.7-py2.7.egg/json_field/forms.py:5: RemovedInDjango19Warning: The django.forms.util module has been renamed. Use django.forms.utils instead.``
There is no necessary to import
django.forms.util(s)
, because you're using it to raise ValidationError. Just importforms
and changeutil.ValidationError
toforms.ValidationError
, or importValidationError
fromdjango.core.exceptions
.The text was updated successfully, but these errors were encountered: