Code

missed an import _
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 8 Jan 2002 11:56:24 +0000 (11:56 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 8 Jan 2002 11:56:24 +0000 (11:56 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@513 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/cgitb.py
roundup/date.py

index de017e42c7269c3ca601cdef5e4aca2796f3ef48..560973b0cddf77a02233192c08fa3431408cc94d 100644 (file)
@@ -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 @@ Extended CGI traceback handler by Ka-Ping Yee, <ping@lfw.org>.
 
 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 @@ def handler():
 
 #
 # $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.
 #
index c74b85d6a6068a83659363e83f4757843beae078..a74fcc217b75e7625c37775a25b5c9cf04b890bf 100644 (file)
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: date.py,v 1.15 2002-01-05 02:27:00 richard Exp $
+# $Id: date.py,v 1.16 2002-01-08 11:56:24 richard Exp $
 
 __doc__ = """
 Date, time and time interval handling.
 """
 
 import time, re, calendar
+from i18n import _
 
 class Date:
     '''
@@ -378,6 +379,9 @@ if __name__ == '__main__':
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.15  2002/01/05 02:27:00  richard
+# I18N'ification
+#
 # Revision 1.14  2001/11/22 15:46:42  jhermann
 # Added module docstrings to all modules.
 #