django-bitcoin icon indicating copy to clipboard operation
django-bitcoin copied to clipboard

Fix BCAddressField where field is required but there is no value

Open alfetopito opened this issue 11 years ago • 0 comments

If the field matches above conditions, validation will raise an AttributeError:

... File ".../python2.7/site-packages/django/forms/forms.py", line 287, in _clean_fields value = field.clean(value) File ".../python2.7/site-packages/django_bitcoin/BCAddressField.py", line 21, in clean value = value.strip() AttributeError: 'NoneType' object has no attribute 'strip'

alfetopito avatar Jun 28 '13 14:06 alfetopito