diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-05-24 18:27:26 -0500 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-05-24 18:27:26 -0500 |
commit | 542519ebfd073662bc9421ac5fa0aa01ebc0d6fe (patch) | |
tree | 4f6814d089be78af598f1d9f536c18a6a61f8e54 /python/tidy.py | |
parent | 16f19b628fa630aab8cfd275a90128da7b59723b (diff) | |
parent | 5793add4cdc9e96930160dfc90025f43607f9f5d (diff) | |
download | servo-542519ebfd073662bc9421ac5fa0aa01ebc0d6fe.tar.gz servo-542519ebfd073662bc9421ac5fa0aa01ebc0d6fe.zip |
Auto merge of #6174 - frewsxcv:cleanup-long-lines, r=SimonSapin
Part of https://github.com/servo/servo/issues/6041
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6174)
<!-- Reviewable:end -->
Diffstat (limited to 'python/tidy.py')
-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 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): |