Skip to content

Commit f3d661d

Browse files
dongweiminguntitaker
authored andcommitted
Fix unbound error (pallets#2039)
1 parent a6a36ec commit f3d661d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flask/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ def __init__(self, import_name, static_path=None, static_url_path=None,
519519
#: def to_python(self, value):
520520
#: return value.split(',')
521521
#: def to_url(https://github.com/self,%20values):
522-
#: return ','.join(BaseConverter.to_url(https://github.com/value)
522+
#: return ','.join(super(ListConverter, self).to_url(https://github.com/value)
523523
#: for value in values)
524524
#:
525525
#: app = Flask(__name__)

0 commit comments

Comments
 (0)