From 0919ac9d8115249c3392fb754693ff39080d916e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Sat, 29 Dec 2012 11:42:31 +0100 Subject: [PATCH] Disabled debug mode as it causes startup issues when app is called the normal cura way --- Cura/webui/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Cura/webui/__init__.py b/Cura/webui/__init__.py index db86ee6..54f6f1b 100644 --- a/Cura/webui/__init__.py +++ b/Cura/webui/__init__.py @@ -237,5 +237,4 @@ def allowed_file(filename): return "." in filename and filename.rsplit(".", 1)[1] in ALLOWED_EXTENSIONS def run(): - app.debug = True app.run(host="0.0.0.0", port=5000)