diff options
Diffstat (limited to 'bin/list_owners')
-rw-r--r-- | bin/list_owners | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/list_owners b/bin/list_owners index 4c2d908d..b58d95da 100644 --- a/bin/list_owners +++ b/bin/list_owners @@ -1,6 +1,6 @@ #! @PYTHON@ # -# Copyright (C) 2002-2007 by the Free Software Foundation, Inc. +# Copyright (C) 2002-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 @@ -45,7 +45,7 @@ import getopt import paths from Mailman import Utils from Mailman.MailList import MailList -from Mailman.i18n import _ +from Mailman.i18n import C_ PROGRAM = sys.argv[0] @@ -62,7 +62,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) |