Skip to content

Commit ef1f766

Browse files
committed
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 <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
1 parent 780776c commit ef1f766

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/icu/shrink-icu-src.py

Lines changed: 1 addition & 1 deletion
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)