Browse Source

Fix unbound error (#2039)

pull/2040/head
小明 8 years ago committed by Markus Unterwaditzer
parent
commit
f3d661de66
  1. 2
      flask/app.py

2
flask/app.py

@ -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…
Cancel
Save