Author: echuck
Date: 2005-03-11 19:45:59 -0700 (Fri, 11 Mar 2005)
New Revision: 2088
Modified:
Webware/trunk/WebKit/ExceptionHandler.py
Log:
Added sys.version to the general info section.
Modified: Webware/trunk/WebKit/ExceptionHandler.py
===================================================================
--- Webware/trunk/WebKit/ExceptionHandler.py 2005-03-12 02:45:31 UTC (rev 2087)
+++ Webware/trunk/WebKit/ExceptionHandler.py 2005-03-12 02:45:59 UTC (rev 2088)
@@ -214,7 +214,7 @@
def publicErrorPage(self):
"""
- Returns a brief error pae telling the user that an
+ Returns a brief error page telling the user that an
error has occurred. Body of the message comes from
``UserErrorMessage`` setting.
"""
@@ -404,7 +404,8 @@
'time': asctime(localtime(self._time)),
'filename': self.servletPathname(),
'os.getcwd()': os.getcwd(),
- 'sys.path': sys.path
+ 'sys.path': sys.path,
+ 'sys.version': sys.version,
}
self.writeDict(info)
|