diff options
author | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2021-05-11 12:55:11 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2021-05-11 12:55:45 +0530 |
commit | 1d25bd274cbb8e731e90caf97809340d267bbb45 (patch) | |
tree | 28de4077f4efdd1b1951445d42fa94079fdca5b7 /locale | |
parent | 81046e2812a3b41ad9a818eb42a1681bea232ce9 (diff) | |
download | glibc-1d25bd274cbb8e731e90caf97809340d267bbb45.tar.gz glibc-1d25bd274cbb8e731e90caf97809340d267bbb45.tar.xz glibc-1d25bd274cbb8e731e90caf97809340d267bbb45.zip |
get-translit.py: Fix typo
Diffstat (limited to 'locale')
-rw-r--r-- | locale/gen-translit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/locale/gen-translit.py b/locale/gen-translit.py index 64208b0004..4850aad6b0 100644 --- a/locale/gen-translit.py +++ b/locale/gen-translit.py @@ -92,7 +92,7 @@ for lineno, line in enumerate(sys.stdin): if translits \ and translit.codepoints.decoded <= translits[-1].codepoints.decoded: raise IOError("unexpected codepoint {!r} on line {}: {!r}".format( - translit.codeponts.decoded, lineno + 1, line)) + translit.codepoints.decoded, lineno + 1, line)) translits.append(translit) # Generate the C sources. |