| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 """ | 6 """ |
| 7 This is a script for generating easily-viewable comparisons of text and pixel | 7 This is a script for generating easily-viewable comparisons of text and pixel |
| 8 diffs. | 8 diffs. |
| 9 """ | 9 """ |
| 10 import optparse | 10 import optparse |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 default=None, | 96 default=None, |
| 97 help=("Use the local test output zip file " | 97 help=("Use the local test output zip file " |
| 98 "instead of scraping the buildbots")) | 98 "instead of scraping the buildbots")) |
| 99 option_parser.add_option("-l", "--local", action="store_true", | 99 option_parser.add_option("-l", "--local", action="store_true", |
| 100 default=False, | 100 default=False, |
| 101 help=("Use local baselines instead of scraping " | 101 help=("Use local baselines instead of scraping " |
| 102 "baselines from source websites")) | 102 "baselines from source websites")) |
| 103 | 103 |
| 104 options, args = option_parser.parse_args() | 104 options, args = option_parser.parse_args() |
| 105 main(options, args) | 105 main(options, args) |
| OLD | NEW |