diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-25 22:32:56 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-25 22:32:56 (GMT) |
commit | 7c4a7e6f3cbd98ad547a3f1661582517612419e3 (patch) | |
tree | 401bde344fe15ab617c9be5c0e6fec7f4363d81f /Tools/i18n/msgfmt.py | |
parent | bf8ab77f940013e42f7b9af5b4fd2100238f389b (diff) | |
download | cpython-7c4a7e6f3cbd98ad547a3f1661582517612419e3.zip cpython-7c4a7e6f3cbd98ad547a3f1661582517612419e3.tar.gz cpython-7c4a7e6f3cbd98ad547a3f1661582517612419e3.tar.bz2 |
#18803: fix more typos. Patch by FĂ©vry Thibault.
Diffstat (limited to 'Tools/i18n/msgfmt.py')
-rwxr-xr-x | Tools/i18n/msgfmt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/i18n/msgfmt.py b/Tools/i18n/msgfmt.py index 7b3a81f..cd90691 100755 --- a/Tools/i18n/msgfmt.py +++ b/Tools/i18n/msgfmt.py @@ -154,7 +154,7 @@ def make(filename, outfile): # This is a message with plural forms elif l.startswith('msgid_plural'): if section != ID: - print('msgid_plural not preceeded by msgid on %s:%d' % (infile, lno), + print('msgid_plural not preceded by msgid on %s:%d' % (infile, lno), file=sys.stderr) sys.exit(1) l = l[12:] |