| Index: build/android/bb_run_sharded_steps.py
|
| diff --git a/build/android/bb_run_sharded_steps.py b/build/android/bb_run_sharded_steps.py
|
| index 6124819cb5c4bea3d68e3e6fb0417b2abb0b881a..6aeba5b5f58cfeccf7d835e6613afbb632ea18b1 100755
|
| --- a/build/android/bb_run_sharded_steps.py
|
| +++ b/build/android/bb_run_sharded_steps.py
|
| @@ -10,7 +10,6 @@ TODO(bulach): remove me once all other repositories reference
|
| """
|
|
|
| import optparse
|
| -import os
|
| import sys
|
|
|
| from pylib import cmd_helper
|
| @@ -27,7 +26,7 @@ def main(argv):
|
| parser.add_option('-p', '--print_results',
|
| help='Only prints the results for the previously '
|
| 'executed step, do not run it again.')
|
| - options, urls = parser.parse_args(argv)
|
| + options, _ = parser.parse_args(argv)
|
| if options.print_results:
|
| return cmd_helper.RunCmd(['build/android/test_runner.py', 'perf',
|
| '--print-step', options.print_results])
|
|
|