Index: tools/bisect-builds.py |
diff --git a/tools/bisect-builds.py b/tools/bisect-builds.py |
index fd6810cd2cb5626c345b7983b433300c7fd7168b..a6ae537d2d86eeb9d8f83d1571f18e1f45d57d9d 100755 |
--- a/tools/bisect-builds.py |
+++ b/tools/bisect-builds.py |
@@ -587,12 +587,20 @@ def GetChromiumRevision(url): |
def main(): |
usage = ('%prog [options] [-- chromium-options]\n' |
- 'Perform binary search on the snapshot builds to find a minimal ' |
- 'range of revisions where a behavior change happened. The ' |
- 'behaviors are described as "good" and "bad". ' |
- 'It is NOT assumed that the behavior of the later revision is ' |
+ 'Perform binary search on the snapshot builds to find a minimal\n' |
+ 'range of revisions where a behavior change happened. The\n' |
+ 'behaviors are described as "good" and "bad".\n' |
+ 'It is NOT assumed that the behavior of the later revision is\n' |
'the bad one.\n' |
'\n' |
+ 'Revision numbers should use\n' |
+ ' Official versions (e.g. 1.0.1000.0) for official builds. (-o)\n' |
+ ' SVN revisions (e.g. 123456) for chromium builds, from trunk.\n' |
+ ' Use base_trunk_revision from http://omahaproxy.appspot.com/\n' |
+ ' for earlier revs.\n' |
+ ' Chrome\'s about: build number and omahaproxy branch_revision\n' |
+ ' are incorrect, they are from branches.\n' |
+ '\n' |
'Tip: add "-- --no-first-run" to bypass the first run prompts.') |
parser = optparse.OptionParser(usage=usage) |
# Strangely, the default help output doesn't include the choice list. |