Skip to content

Commit 1a33ef8

Browse files
authored
Remove obsolete UnicodeEncodeError handling
1 parent 3f8ddc0 commit 1a33ef8

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

i18n/create_messages.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,8 @@
2929

3030

3131
def string_is_ascii(s):
32-
try:
33-
# This approach is better for compatibility
34-
return all(ord(c) < 128 for c in s)
35-
except UnicodeEncodeError:
36-
return False
32+
# This approach is better for compatibility
33+
return all(ord(c) < 128 for c in s)
3734

3835
def load_constants(filename):
3936
"""Read in constants file, which must be output in every language."""

0 commit comments

Comments
 (0)