Chromium Code Reviews| Index: tools/checklicenses/checklicenses.py |
| diff --git a/tools/checklicenses/checklicenses.py b/tools/checklicenses/checklicenses.py |
| index 193efd7afbc9ade6bfc03b87ef2fdae2313dc6eb..63f4e7d497ecd0e589cac543f74338cfdf17f60f 100755 |
| --- a/tools/checklicenses/checklicenses.py |
| +++ b/tools/checklicenses/checklicenses.py |
| @@ -332,9 +332,6 @@ PATH_SPECIFIC_WHITELISTED_LICENSES = { |
| 'third_party/ply/__init__.py': [ |
| 'UNKNOWN', |
| ], |
| - 'third_party/pexpect': [ # http://crbug.com/156113 |
|
Paweł Hajdan Jr.
2012/11/08 17:42:04
Yay, removing an excpetion. Awesome!
bulach
2012/11/08 17:45:36
:)
|
| - 'UNKNOWN', |
| - ], |
| 'third_party/protobuf': [ # http://crbug.com/98455 |
| 'UNKNOWN', |
| ], |
| @@ -455,7 +452,9 @@ def check_licenses(options, args): |
| 'devscripts', |
| 'licensecheck.pl')) |
| - licensecheck = subprocess.Popen([licensecheck_path, '-r', start_dir], |
| + licensecheck = subprocess.Popen([licensecheck_path, |
| + '-l', '100', |
|
Paweł Hajdan Jr.
2012/11/08 17:42:04
Just checking: do you need this? If so, OK.
bulach
2012/11/08 17:45:36
yes, this is needed: sorry, I forgot to update the
|
| + '-r', start_dir], |
| stdout=subprocess.PIPE, |
| stderr=subprocess.PIPE) |
| stdout, stderr = licensecheck.communicate() |