diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-05-14 13:26:13 +0200 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-05-14 13:26:13 +0200 |
commit | d84c3e7a303c5582cd240be637574067bd5cac91 (patch) | |
tree | 50aeb9adc1503f600c68d67bade9a51f1fb57252 /python | |
parent | 40a91d6227a8ee89b6278758ebebb53625535e0d (diff) | |
download | servo-d84c3e7a303c5582cd240be637574067bd5cac91.tar.gz servo-d84c3e7a303c5582cd240be637574067bd5cac91.zip |
Fix some overlong lines.
Diffstat (limited to 'python')
-rw-r--r-- | python/tidy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tidy.py b/python/tidy.py index 780cfca647e..5191a8921b8 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) >= 160: + if len(line) >= 150: yield (idx + 1, "(much) overlong line") def check_whatwg_url(idx, line): |