Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to keep reloading with flask even though I have syntax errors

Flask's autoreloader is very nice, however I often make syntax mistakes, which causes the reloader to crash.

Is it possible to make the reloader catch the syntax error and still print it, but keep on reloading when the offending file changes again?

like image 914
Tyilo Avatar asked Apr 07 '13 02:04

Tyilo


1 Answers

Take a look at Flask-Failsafe, here's a bit more from the author.

like image 124
DazWorrall Avatar answered Oct 29 '22 03:10

DazWorrall