fix dash typo again

This commit is contained in:
KF7EEL 2021-01-02 15:48:59 -08:00
parent 16239d4f41
commit 442af74b5b
1 changed files with 3 additions and 1 deletions

View File

@ -124,5 +124,7 @@ def help():
@app.route('/about')
def about():
#return get_data()
return render_template('about.html', title = dashboard_title, logo = logo, contact_name = contact_name, contact_call = contact_call, contact_email = contact_email, contact_website = contact_website)_name__ == '__main__':
return render_template('about.html', title = dashboard_title, logo = logo, contact_name = contact_name, contact_call = contact_call, contact_email = contact_email, contact_website = contact_website)
if __name__ == '__main__':
app.run(debug = True, port=dash_port, host=dash_host)