diff options
author | Sakthipriyan Vairamani <thechargingvolcano@gmail.com> | 2016-07-08 20:41:17 +0530 |
---|---|---|
committer | Evan Lucas <evanlucas@me.com> | 2016-07-15 08:16:36 -0500 |
commit | 8efca46e780fd243dbd50aeb01ce5d1c14d02423 (patch) | |
tree | 309f55b1bfe68597eac0ed52872dfe80c6f5195e /tools | |
parent | 2bef583f8ab517cb67827aef9921102fcf219954 (diff) | |
download | node-new-8efca46e780fd243dbd50aeb01ce5d1c14d02423.tar.gz |
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>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/icu/shrink-icu-src.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/icu/shrink-icu-src.py b/tools/icu/shrink-icu-src.py index 4a5f06d4a3..d0c82d8746 100644 --- a/tools/icu/shrink-icu-src.py +++ b/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) |