We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dear,
I get error if i do post and the form has been filled out incorrectly. On line 163 in djng/forms/widgets.py.
'unicode' object has no attribute 'url' Value is "u'Drop image here or click to upload" but must be None because imagefield was empty
The text was updated successfully, but these errors were encountered:
Django version?
Sorry, something went wrong.
django== 1.11
It can be fixed by checking for unicode?
if not isinstance(value, unicode) and value: ...
That is not a good solution, because it seems that imagefield is empty.
No branches or pull requests
Dear,
I get error if i do post and the form has been filled out incorrectly. On line 163 in djng/forms/widgets.py.
'unicode' object has no attribute 'url'
Value is "u'Drop image here or click to upload" but must be None because imagefield was empty
The text was updated successfully, but these errors were encountered: