Skip to content

Commit 78e80b8

Browse files
author
Richard Jones
committed
missed an import _
1 parent d2bf439 commit 78e80b8

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

roundup/cgitb.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#
22
# This module was written by Ka-Ping Yee, <[email protected]>.
33
#
4-
# $Id: cgitb.py,v 1.8 2002-01-05 02:22:32 richard Exp $
4+
# $Id: cgitb.py,v 1.9 2002-01-08 11:56:24 richard Exp $
55

66
__doc__ = """
77
Extended CGI traceback handler by Ka-Ping Yee, <[email protected]>.
88
"""
99

1010
import sys, os, types, string, keyword, linecache, tokenize, inspect, pydoc
1111

12-
from roundup.i18n import _
12+
from i18n import _
1313

1414
def breaker():
1515
return ('<body bgcolor="#f0f0ff">' +
@@ -124,6 +124,9 @@ def handler():
124124

125125
#
126126
# $Log: not supported by cvs2svn $
127+
# Revision 1.8 2002/01/05 02:22:32 richard
128+
# i18n'ification
129+
#
127130
# Revision 1.7 2001/11/22 15:46:42 jhermann
128131
# Added module docstrings to all modules.
129132
#

roundup/date.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: date.py,v 1.15 2002-01-05 02:27:00 richard Exp $
18+
# $Id: date.py,v 1.16 2002-01-08 11:56:24 richard Exp $
1919

2020
__doc__ = """
2121
Date, time and time interval handling.
2222
"""
2323

2424
import time, re, calendar
25+
from i18n import _
2526

2627
class Date:
2728
'''
@@ -378,6 +379,9 @@ def test():
378379

379380
#
380381
# $Log: not supported by cvs2svn $
382+
# Revision 1.15 2002/01/05 02:27:00 richard
383+
# I18N'ification
384+
#
381385
# Revision 1.14 2001/11/22 15:46:42 jhermann
382386
# Added module docstrings to all modules.
383387
#

0 commit comments

Comments
 (0)