aboutsummaryrefslogtreecommitdiffstats
path: root/bin/genaliases
diff options
context:
space:
mode:
Diffstat (limited to 'bin/genaliases')
-rw-r--r--bin/genaliases8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/genaliases b/bin/genaliases
index 77bc2907..82251794 100644
--- a/bin/genaliases
+++ b/bin/genaliases
@@ -1,6 +1,6 @@
#! @PYTHON@
#
-# Copyright (C) 2001-2011 by the Free Software Foundation, Inc.
+# Copyright (C) 2001-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
@@ -40,7 +40,7 @@ import paths # path hacking
from Mailman import mm_cfg
from Mailman import Utils
from Mailman import MailList
-from Mailman.i18n import _
+from Mailman.i18n import C_
try:
True, False
@@ -55,7 +55,7 @@ def usage(code, msg=''):
fd = sys.stderr
else:
fd = sys.stdout
- print >> fd, _(__doc__)
+ print >> fd, C_(__doc__)
if msg:
print >> fd, msg
sys.exit(code)
@@ -81,7 +81,7 @@ def main():
if not mm_cfg.MTA:
mta = repr(mm_cfg.MTA)
- usage(2, _(
+ usage(2, C_(
"genaliases can't do anything useful with mm_cfg.MTA = %(mta)s."
))