aboutsummaryrefslogtreecommitdiffstats
path: root/python/tidy.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/tidy.py')
-rw-r--r--python/tidy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tidy.py b/python/tidy.py
index 5191a8921b8..500c75bf316 100644
--- a/python/tidy.py
+++ b/python/tidy.py
@@ -68,7 +68,7 @@ def check_license(contents):
def check_length(idx, line):
- if len(line) >= 150:
+ if len(line) >= 120:
yield (idx + 1, "(much) overlong line")
def check_whatwg_url(idx, line):