Commit 380e5998 authored by akuegel@chromium.org's avatar akuegel@chromium.org

Fix format string.

After changing this to '%f%' instead of just '%' this doesn't
work anymore. It should be '%f%%' instead.

BUG=
TBR=iannucci@chromium.org

Review URL: https://codereview.chromium.org/1156023008

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@295539 0039d316-1c4b-4281-b951-d872f2087c98
parent 4c10d415
......@@ -64,7 +64,7 @@ def covered_main(includes, require_native=None, required_percentage=100.0):
COVERAGE.stop()
if COVERAGE.report() < required_percentage:
print 'FATAL: not at required %f% coverage.' % required_percentage
print 'FATAL: not at required %f%% coverage.' % required_percentage
retcode = 2
return retcode
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment