Browse Source

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: https://github.com/nodejs/node/pull/7620
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
v7.x
Sakthipriyan Vairamani 9 years ago
parent
commit
ef1f7661c7
  1. 2
      tools/icu/shrink-icu-src.py

2
tools/icu/shrink-icu-src.py

@ -33,7 +33,7 @@ if os.path.isdir(options.icusmall):
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)

Loading…
Cancel
Save