diff options
Diffstat (limited to 'cgi-bin/get.py')
-rwxr-xr-x | cgi-bin/get.py | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/cgi-bin/get.py b/cgi-bin/get.py index dae200b..500f081 100755 --- a/cgi-bin/get.py +++ b/cgi-bin/get.py @@ -6,7 +6,7 @@ # Distributed under the MIT License. import abc -import cgi, cgitb +import cgi from collections import namedtuple from concurrent.futures import ThreadPoolExecutor import json @@ -38,15 +38,8 @@ def headers(): print() -def debugging(): - # TODO: figure out how to include this on the web page - #cgitb.enable() - pass - - def setup(): headers() - debugging() def format_response(response): |