Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(165)

Unified Diff: tools/telemetry/telemetry/core/command_line.py

Issue 309553008: Add command argument to perf test_runner.py help command (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review changes Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/telemetry/telemetry/test_runner.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/core/command_line.py
diff --git a/tools/telemetry/telemetry/core/command_line.py b/tools/telemetry/telemetry/core/command_line.py
index dd026df78b297aa7b7942b06c3823dd0e6eb2ebc..0f21d4b33b2bb23b8f8d458b0afd164059f972b1 100644
--- a/tools/telemetry/telemetry/core/command_line.py
+++ b/tools/telemetry/telemetry/core/command_line.py
@@ -61,7 +61,8 @@ class OptparseCommand(Command):
@classmethod
def CreateParser(cls):
- return optparse.OptionParser('%%prog %s %s' % (cls.Name(), cls.usage))
+ return optparse.OptionParser('%%prog %s %s' % (cls.Name(), cls.usage),
+ description=cls.Description())
def Run(self, args):
raise NotImplementedError()
« no previous file with comments | « no previous file | tools/telemetry/telemetry/test_runner.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698