Skip to content

Commit

Permalink
build: remove unnecessary Python semicolon
Browse files Browse the repository at this point in the history
PR-URL: #29170
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Christian Clauss <cclauss@me.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
  • Loading branch information
MattIPv4 authored and targos committed Aug 19, 2019
1 parent a6b9299 commit fbe25c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/icu/shrink-icu-src.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def icu_info(icu_full_path):
if not icu_ver_major:
print(' Could not read U_ICU_VERSION_SHORT version from %s' % uvernum_h)
sys.exit(1)
icu_endianness = sys.byteorder[0]; # TODO(srl295): EBCDIC should be 'e'
icu_endianness = sys.byteorder[0] # TODO(srl295): EBCDIC should be 'e'
return (icu_ver_major, icu_endianness)

(icu_ver_major, icu_endianness) = icu_info(options.icusrc)
Expand Down

0 comments on commit fbe25c7

Please sign in to comment.