From 4d400cf80cdfc4e3f3cce1c6a32c9615079ab3c3 Mon Sep 17 00:00:00 2001
From: Martijn Vermaat <martijn@vermaat.name>
Date: Tue, 14 Jul 2015 18:09:15 +0200
Subject: [PATCH] Use the Flask auto reloader in the debug server

---
 mutalyzer/entrypoints/website.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mutalyzer/entrypoints/website.py b/mutalyzer/entrypoints/website.py
index f387b70f..48ca96f0 100644
--- a/mutalyzer/entrypoints/website.py
+++ b/mutalyzer/entrypoints/website.py
@@ -59,7 +59,7 @@ def debugserver(host, port):
     """
     Run the website with the Python built-in HTTP server.
     """
-    application.run(host=host, port=port, debug=True, use_reloader=False)
+    application.run(host=host, port=port, debug=True, use_reloader=True)
 
 
 def main():
-- 
GitLab