mirror of https://github.com/pallets/flask.git
Added fix for issue 1529
Signed-off-by: Aayush Kasurde <aayush.kasurde@gmail.com>
This commit is contained in:
parent
db09c6798e
commit
8ba986e45e
|
@ -23,3 +23,6 @@ def add_numbers():
|
||||||
@app.route('/')
|
@app.route('/')
|
||||||
def index():
|
def index():
|
||||||
return render_template('index.html')
|
return render_template('index.html')
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
app.run()
|
||||||
|
|
Loading…
Reference in New Issue