Mercurial > p > roundup > code
diff roundup/cgitb.py @ 501:e0944187229f
missed an import _
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 08 Jan 2002 11:56:24 +0000 |
| parents | fad315a10185 |
| children | 3eb5ea7e3720 |
line wrap: on
line diff
--- a/roundup/cgitb.py Tue Jan 08 05:26:32 2002 +0000 +++ b/roundup/cgitb.py Tue Jan 08 11:56:24 2002 +0000 @@ -1,7 +1,7 @@ # # This module was written by Ka-Ping Yee, <ping@lfw.org>. # -# $Id: cgitb.py,v 1.8 2002-01-05 02:22:32 richard Exp $ +# $Id: cgitb.py,v 1.9 2002-01-08 11:56:24 richard Exp $ __doc__ = """ Extended CGI traceback handler by Ka-Ping Yee, <ping@lfw.org>. @@ -9,7 +9,7 @@ import sys, os, types, string, keyword, linecache, tokenize, inspect, pydoc -from roundup.i18n import _ +from i18n import _ def breaker(): return ('<body bgcolor="#f0f0ff">' + @@ -124,6 +124,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.8 2002/01/05 02:22:32 richard +# i18n'ification +# # Revision 1.7 2001/11/22 15:46:42 jhermann # Added module docstrings to all modules. #
