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): #: def to_python(self, value):
#: return value.split(',') #: return value.split(',')
#: def to_url(self, values): #: def to_url(self, values):
#: return ','.join(BaseConverter.to_url(value) #: return ','.join(super(ListConverter, self).to_url(value)
#: for value in values) #: for value in values)
#: #:
#: app = Flask(__name__) #: app = Flask(__name__)

Loading…
Cancel
Save