diff options
author | Matt Brubeck <mbrubeck@limpet.net> | 2015-10-08 15:15:31 -0700 |
---|---|---|
committer | Matt Brubeck <mbrubeck@limpet.net> | 2015-10-09 12:23:33 -0700 |
commit | b649246fe2a14eacbf4e390c3161d980fc845773 (patch) | |
tree | b3ff829cbab0035e12fdd68b1053ca4716d3a8d6 /python/tidy.py | |
parent | ab42ca42967354cba08d1dca83aa99a637bd7a6b (diff) | |
download | servo-b649246fe2a14eacbf4e390c3161d980fc845773.tar.gz servo-b649246fe2a14eacbf4e390c3161d980fc845773.zip |
Replace stb_image with PistonDevelopers/image
Fixes #3368
Diffstat (limited to 'python/tidy.py')
-rw-r--r-- | python/tidy.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/python/tidy.py b/python/tidy.py index 93b30e147f9..9b09c0fd9bf 100644 --- a/python/tidy.py +++ b/python/tidy.py @@ -149,7 +149,10 @@ 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) + # - `png` is used by PistonDevelopers/image-png and servo/rust-png + exceptions = ["glutin", "wayland-kbd", "png"] while idx < len(contents): content = contents[idx].strip() |