Fix error due to remaining log force code

master
pictuga 2021-01-14 00:51:47 +01:00
parent 3e886caaab
commit 01a7667032
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ def cgi_error_handler(environ, start_response, app):
except Exception as e: except Exception as e:
headers = {'status': '500 Oops', 'content-type': 'text/html'} headers = {'status': '500 Oops', 'content-type': 'text/html'}
start_response(headers['status'], list(headers.items()), sys.exc_info()) start_response(headers['status'], list(headers.items()), sys.exc_info())
log('ERROR: %s' % repr(e), force=True) log('ERROR: %s' % repr(e))
return [cgitb.html(sys.exc_info())] return [cgitb.html(sys.exc_info())]