forked from orbit-oss/flask
Fix unbound error (#2039)
This commit is contained in:
parent
a6a36ec72a
commit
f3d661de66
1 changed files with 1 additions and 1 deletions
|
|
@ -519,7 +519,7 @@ class Flask(_PackageBoundObject):
|
|||
#: def to_python(self, value):
|
||||
#: return value.split(',')
|
||||
#: def to_url(self, values):
|
||||
#: return ','.join(BaseConverter.to_url(value)
|
||||
#: return ','.join(super(ListConverter, self).to_url(value)
|
||||
#: for value in values)
|
||||
#:
|
||||
#: app = Flask(__name__)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue