Browse Source

Merge pull request #1530 from Aayush-Kasurde/master

Added missing app.run line in jqueryexample.py
pull/1532/head
Markus Unterwaditzer 9 years ago
parent
commit
92a293046b
  1. 3
      examples/jqueryexample/jqueryexample.py

3
examples/jqueryexample/jqueryexample.py

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

Loading…
Cancel
Save