From 16496557f0aa161f3742daf11e3240412604c0ff Mon Sep 17 00:00:00 2001 From: Aaron Taylor Date: Fri, 5 Jan 2018 17:21:35 -0800 Subject: [PATCH] Rename for consistency with config.py and added new debug option. --- bin/{cmless_debug.py => debug.py} | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) rename bin/{cmless_debug.py => debug.py} (58%) diff --git a/bin/cmless_debug.py b/bin/debug.py similarity index 58% rename from bin/cmless_debug.py rename to bin/debug.py index 68c8f61..1504888 100644 --- a/bin/cmless_debug.py +++ b/bin/debug.py @@ -3,6 +3,10 @@ # Any debug toggles are kept in this file and should be committed to git in the # 'off' state. - + +# Enable CGI traceback printing in the browser as pretty HTML. import cgitb -#cgitb.enable() +# cgitb.enable() + +# Enable CMless error message printing in the browser. +print_to_browser = False -- 2.20.1