Merge pull request #1530 from Aayush-Kasurde/master

Added missing app.run line in jqueryexample.py
This commit is contained in:
Markus Unterwaditzer 2015-07-12 18:49:55 +02:00
commit 92a293046b

View file

@ -23,3 +23,6 @@ def add_numbers():
@app.route('/')
def index():
return render_template('index.html')
if __name__ == '__main__':
app.run()