Skip to content

Commit

Permalink
tools: fix broken format string
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
thefourtheye authored and evanlucas committed Jul 15, 2016
1 parent 2bef583 commit 8efca46
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 @@ -33,7 +33,7 @@
shutil.rmtree(options.icusmall)

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


Expand Down

0 comments on commit 8efca46

Please sign in to comment.