Skip to content

Commit 73ba4df

Browse files
authored
Including app.run() for application execution
if __name__ == '__main__': app.run(debug=True)
1 parent 2450a5b commit 73ba4df

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

twauth-web.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,4 +113,5 @@ def callback():
113113
def internal_server_error(e):
114114
return render_template('error.html', error_message='uncaught exception'), 500
115115

116-
116+
if __name__ == '__main__':
117+
app.run()

0 commit comments

Comments
 (0)