summaryrefslogtreecommitdiffstats
path: root/Lib/cgi.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/cgi.py')
-rwxr-xr-xLib/cgi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/cgi.py b/Lib/cgi.py
index d4c55b7..345c8a1 100755
--- a/Lib/cgi.py
+++ b/Lib/cgi.py
@@ -864,7 +864,7 @@ def print_exception(type=None, value=None, tb=None, limit=None):
type, value, tb = sys.exc_info()
import traceback
print
- print "<H3>Traceback (innermost last):</H3>"
+ print "<H3>Traceback (most recent call last):</H3>"
list = traceback.format_tb(tb, limit) + \
traceback.format_exception_only(type, value)
print "<PRE>%s<B>%s</B></PRE>" % (