diff options
author | Jakub KulĂk <Kulikjak@gmail.com> | 2019-09-13 11:25:32 +0200 |
---|---|---|
committer | Julien Palard <julien@palard.fr> | 2019-09-13 11:25:32 +0200 |
commit | 42671aea2db6cbc54369617da0fd3545048e0a45 (patch) | |
tree | bdd9e6c196e4fa852d3c3ec04dd8b1add824b797 /Lib/argparse.py | |
parent | Doc: Add example snippet for str.isupper() (GH-14681) (diff) | |
download | cpython-42671aea2db6cbc54369617da0fd3545048e0a45.tar.gz cpython-42671aea2db6cbc54369617da0fd3545048e0a45.tar.bz2 cpython-42671aea2db6cbc54369617da0fd3545048e0a45.zip |
bpo-37785: Fix xgettext warning in argparse (GH-15161)
Diffstat (limited to 'Lib/argparse.py')
-rw-r--r-- | Lib/argparse.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/argparse.py b/Lib/argparse.py index 2e46e76a499..370692bd1bf 100644 --- a/Lib/argparse.py +++ b/Lib/argparse.py @@ -1214,8 +1214,9 @@ class FileType(object): return open(string, self._mode, self._bufsize, self._encoding, self._errors) except OSError as e: - message = _("can't open '%s': %s") - raise ArgumentTypeError(message % (string, e)) + args = {'filename': string, 'error': e} + message = _("can't open '%(filename)s': %(error)s") + raise ArgumentTypeError(message % args) def __repr__(self): args = self._mode, self._bufsize |