From: Barry Warsaw Date: Mon, 21 May 2001 19:58:23 +0000 (+0000) Subject: main(): default-domain argument to getopt.getopt() was missing a = to X-Git-Tag: v2.2a3~1730 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2b63969a5adbc43a3843102f95b45424da229745;p=thirdparty%2FPython%2Fcpython.git main(): default-domain argument to getopt.getopt() was missing a = to indicate it took an argument. This closes SF patch #402223 by Bastian Kleineidam. --- diff --git a/Tools/i18n/pygettext.py b/Tools/i18n/pygettext.py index 988295217beb..804c98c5e9ed 100755 --- a/Tools/i18n/pygettext.py +++ b/Tools/i18n/pygettext.py @@ -369,7 +369,7 @@ def main(): opts, args = getopt.getopt( sys.argv[1:], 'ad:DEhk:Kno:p:S:Vvw:x:', - ['extract-all', 'default-domain', 'escape', 'help', + ['extract-all', 'default-domain=', 'escape', 'help', 'keyword=', 'no-default-keywords', 'add-location', 'no-location', 'output=', 'output-dir=', 'style=', 'verbose', 'version', 'width=', 'exclude-file=',