[Zope3-checkins] CVS: Zope3/src/zope/app/browser/skins/debug - exceptions.py:1.2
Steve Alexander
steve@cat-box.net
Wed, 12 Mar 2003 05:06:24 -0500
Update of /cvs-repository/Zope3/src/zope/app/browser/skins/debug
In directory cvs.zope.org:/tmp/cvs-serv11455/src/zope/app/browser/skins/debug
Modified Files:
exceptions.py
Log Message:
Added ZPL header. Changed into a new-style class.
=== Zope3/src/zope/app/browser/skins/debug/exceptions.py 1.1 => 1.2 ===
--- Zope3/src/zope/app/browser/skins/debug/exceptions.py:1.1 Tue Mar 11 18:12:30 2003
+++ Zope3/src/zope/app/browser/skins/debug/exceptions.py Wed Mar 12 05:06:19 2003
@@ -1,3 +1,22 @@
+##############################################################################
+#
+# Copyright (c) 2003 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""View that renders a traceback for exceptions.
+
+$Id$
+"""
+__metaclass__ = type
+
import sys
import traceback