diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-10-12 15:06:31 -0600 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-10-12 15:06:31 -0600 |
commit | 0f597d389052500d9b76b9f9f89e873e6f809ab1 (patch) | |
tree | e93fea3aabe5d213815dea4871409cd30502edc9 /python/tidy.py | |
parent | 6303126e0c48e9c83aa7edd813079a6a360837b2 (diff) | |
parent | a15acef4c8a2a69714dc68c54b971f8ae0f3e55d (diff) | |
download | servo-0f597d389052500d9b76b9f9f89e873e6f809ab1.tar.gz servo-0f597d389052500d9b76b9f9f89e873e6f809ab1.zip |
Auto merge of #7933 - mbrubeck:piston-image, r=glennw
Replace libpng and stb_image with PistonDevelopers/image
Fixes #3368. r? @glennw
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7933)
<!-- Reviewable:end -->
Diffstat (limited to 'python/tidy.py')
-rw-r--r-- | python/tidy.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/python/tidy.py b/python/tidy.py index 37785b6b513..817b3381f79 100644 --- a/python/tidy.py +++ b/python/tidy.py @@ -149,7 +149,9 @@ def check_lock(file_name, contents): contents = contents.splitlines(True) idx = 1 packages = {} - exceptions = ["glutin", "wayland-kbd"] # package names to be neglected (as named by cargo) + + # package names to be neglected (as named by cargo) + exceptions = ["glutin", "wayland-kbd"] while idx < len(contents): content = contents[idx].strip() |