aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2015-03-12 19:13:11 +0100
committerGraham Bloice <graham.bloice@trihedral.com>2015-03-12 21:50:58 +0000
commit17b57ecbf8638fb1ed38194ebcfc523ad0473dac (patch)
tree3b9a3d26b0c78a6c1d509d34b49b9fec887861d8 /tools
parent8bae919a5d627d9644657bfd4389d5e857974ea3 (diff)
checklicenses.py: check the first 150 lines of a file
It should solve the recent failure seen since gdf164df Change-Id: If86bff18fcd9157941ea843ad5029c9d0b2f0b32 Reviewed-on: https://code.wireshark.org/review/7659 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Graham Bloice <graham.bloice@trihedral.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/checklicenses.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/checklicenses.py b/tools/checklicenses.py
index 3d641fdfdd..9cd3a6a56d 100755
--- a/tools/checklicenses.py
+++ b/tools/checklicenses.py
@@ -241,7 +241,7 @@ def check_licenses(options, args):
licensecheck_path = 'licensecheck'
licensecheck = subprocess.Popen([licensecheck_path,
- '-l', '100',
+ '-l', '150',
'-r', start_dir],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)