{{{
<a href="<bound method FieldFile.url of <FieldFile: EXAMPLE>>">EXAMPLE</a>
}}}
with the `href` attribute obviously mis-generated.
Using Django 1.10. This line seems to be the culprit:
https://github.com/django/django/blob/1.10.5/django/forms/widgets.py#L400
--
Ticket URL: <https://code.djangoproject.com/ticket/27733>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* status: new => closed
* resolution: => needsinfo
Comment:
`FieldFile.url` is a property, not a method, see
https://github.com/django/django/blob/1.10.5/django/db/models/fields/files.py#L70
Are you using a third-party FieldFile class?
--
Ticket URL: <https://code.djangoproject.com/ticket/27733#comment:1>
Comment (by Luca De Feo):
You are totally right. I don't know how it had been working for so long
before. Maybe it used to be a method before 1.10?
--
Ticket URL: <https://code.djangoproject.com/ticket/27733#comment:2>
* resolution: needsinfo => worksforme
Comment:
It has been a property for a long time (or always has), but as long as it
used in templates only, it doesn't make a big difference. What might be
new is its usage in Python code.
--
Ticket URL: <https://code.djangoproject.com/ticket/27733#comment:3>
Comment (by Luca De Feo):
I see. Thanks, and sorry for the noise.
--
Ticket URL: <https://code.djangoproject.com/ticket/27733#comment:4>