summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-03 00:08:05 +0000
committerisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-03 00:08:05 +0000
commit546d46306c003076b80f06fdd196e91cea715770 (patch)
tree83dd2fbf2f52ceda8296615a849f5b025b6a2761 /tools
parent8f9075cb1d4e2ae039a12f74210c89a38e9f9ae5 (diff)
downloadchromium_src-546d46306c003076b80f06fdd196e91cea715770.zip
chromium_src-546d46306c003076b80f06fdd196e91cea715770.tar.gz
chromium_src-546d46306c003076b80f06fdd196e91cea715770.tar.bz2
Fix a typo in the histograms PRESUBMIT check.
BUG=245386 Review URL: https://chromiumcodereview.appspot.com/16274007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203645 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r--tools/metrics/histograms/PRESUBMIT.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/metrics/histograms/PRESUBMIT.py b/tools/metrics/histograms/PRESUBMIT.py
index 76ac0d2..a4b4ee7 100644
--- a/tools/metrics/histograms/PRESUBMIT.py
+++ b/tools/metrics/histograms/PRESUBMIT.py
@@ -26,7 +26,7 @@ def CheckChange(input_api, output_api):
['python', 'validate_format.py'], cwd=cwd)
if exit_code != 0:
return [output_api.PresubmitError(
- 'histograms.xml is not well formatted; run update_descriptions.py '
+ 'histograms.xml is not well formatted; run validate_format.py '
'and fix the reported errors')]
return []