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>
pull/7628/merge
Sakthipriyan Vairamani 2016-07-08 20:41:17 +05:30
parent 780776cf60
commit ef1f7661c7
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ if os.path.isdir(options.icusmall):
shutil.rmtree(options.icusmall) shutil.rmtree(options.icusmall)
if not os.path.isdir(options.icusrc): 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) sys.exit(1)