| Index: build/android/gyp/lint.py
|
| diff --git a/build/android/gyp/lint.py b/build/android/gyp/lint.py
|
| index 339d98fd6e4fe7d87c61b3fe145defb467b1dac1..6ae7a32e4ed90bb4e297477064266c060efd4768 100755
|
| --- a/build/android/gyp/lint.py
|
| +++ b/build/android/gyp/lint.py
|
| @@ -116,7 +116,7 @@ def _RunLint(lint_path, config_path, processed_config_path, manifest_path,
|
| return 0
|
|
|
|
|
| -def main(argv):
|
| +def main():
|
| parser = optparse.OptionParser()
|
| parser.add_option('--lint-path', help='Path to lint executable.')
|
| parser.add_option('--config-path', help='Path to lint suppressions file.')
|
| @@ -156,4 +156,4 @@ def main(argv):
|
|
|
|
|
| if __name__ == '__main__':
|
| - sys.exit(main(sys.argv))
|
| + sys.exit(main())
|
|
|