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
changes/01/332501/1
akuegel@chromium.org 11 years ago
parent 4c10d415d9
commit 380e599842

@ -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

Loading…
Cancel
Save