aboutsummaryrefslogtreecommitdiffstats
path: root/python/tidy.py
diff options
context:
space:
mode:
authorMatt Brubeck <mbrubeck@limpet.net>2015-10-08 15:15:31 -0700
committerMatt Brubeck <mbrubeck@limpet.net>2015-10-09 12:23:33 -0700
commitb649246fe2a14eacbf4e390c3161d980fc845773 (patch)
treeb3ff829cbab0035e12fdd68b1053ca4716d3a8d6 /python/tidy.py
parentab42ca42967354cba08d1dca83aa99a637bd7a6b (diff)
downloadservo-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.py5
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()