diff options
author | Matt Brubeck <mbrubeck@limpet.net> | 2015-10-08 20:47:54 -0700 |
---|---|---|
committer | Matt Brubeck <mbrubeck@limpet.net> | 2015-10-10 07:43:11 -0700 |
commit | e2e142aae8d030c6f1a9a5f2b4e647ffda0b1a38 (patch) | |
tree | 6db2a88f437ca5d8fe8c4ab3b99b0cd3f32d6604 /python/tidy.py | |
parent | b649246fe2a14eacbf4e390c3161d980fc845773 (diff) | |
download | servo-e2e142aae8d030c6f1a9a5f2b4e647ffda0b1a38.tar.gz servo-e2e142aae8d030c6f1a9a5f2b4e647ffda0b1a38.zip |
Replace libpng with image everywhere.
Diffstat (limited to 'python/tidy.py')
-rw-r--r-- | python/tidy.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/python/tidy.py b/python/tidy.py index 9b09c0fd9bf..db4aecbf163 100644 --- a/python/tidy.py +++ b/python/tidy.py @@ -151,8 +151,7 @@ def check_lock(file_name, contents): packages = {} # 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"] + exceptions = ["glutin", "wayland-kbd"] while idx < len(contents): content = contents[idx].strip() |