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.
  • Loading branch information
thefourtheye committed Jul 10, 2016
1 parent 6572199 commit 6060be1
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 6060be1

Please sign in to comment.