From 1d27404fac941754438e07ee7920caff81580423 Mon Sep 17 00:00:00 2001 From: Mark Huang <mlhuang@cs.princeton.edu> Date: Thu, 11 Jan 2007 22:05:15 +0000 Subject: [PATCH] - print the actual exception --- ModPython.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ModPython.py b/ModPython.py index 2f46b173..55dfdcad 100644 --- a/ModPython.py +++ b/ModPython.py @@ -5,7 +5,7 @@ # Mark Huang <mlhuang@cs.princeton.edu> # # Copyright (C) 2004-2006 The Trustees of Princeton University -# $Id: ModPython.py,v 1.2 2006/10/25 21:05:05 mlhuang Exp $ +# $Id: ModPython.py,v 1.3 2006/10/30 16:39:24 mlhuang Exp $ # import sys @@ -52,7 +52,7 @@ def handler(req): return apache.OK - except: + except Exception, err: # Log error in /var/log/httpd/(ssl_)?error_log - print >> log, traceback.format_exc() + print >> log, err, traceback.format_exc() return apache.HTTP_INTERNAL_SERVER_ERROR -- 2.47.0