diff options
Diffstat (limited to 'Mailman/i18n.py')
-rw-r--r-- | Mailman/i18n.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mailman/i18n.py b/Mailman/i18n.py index 0cfdb995..102bee83 100644 --- a/Mailman/i18n.py +++ b/Mailman/i18n.py @@ -1,4 +1,4 @@ -# Copyright (C) 2000-2010 by the Free Software Foundation, Inc. +# Copyright (C) 2000-2016 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -15,9 +15,9 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, # USA. -import locale import sys import time +import locale import gettext from types import StringType, UnicodeType @@ -64,7 +64,7 @@ if _translation is None: -def _(s, frame = 1): +def _(s, frame=1): if s == '': return s assert s |