Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Unified Diff: tools/checklicenses/checklicenses.py

Issue 11360098: Roll third_party/pexpect 509:533 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase after licensecheck.pl Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/pexpect/screen.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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()
« no previous file with comments | « third_party/pexpect/screen.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698