Skip to content

Commit 8efca46

Browse files
thefourtheyeevanlucas
authored andcommitted
tools: fix broken format string
The format specifier is incomplete and without this the program will fail at runtime, with "incomplete format" error. PR-URL: #7620 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]>
1 parent 2bef583 commit 8efca46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/icu/shrink-icu-src.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
shutil.rmtree(options.icusmall)
3434

3535
if not os.path.isdir(options.icusrc):
36-
print 'Missing source ICU dir --icusrc=%' % (options.icusrc)
36+
print 'Missing source ICU dir --icusrc=%s' % (options.icusrc)
3737
sys.exit(1)
3838

3939

0 commit comments

Comments
 (0)