diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-05-02 16:48:45 -0700 |
---|---|---|
committer | bors-servo <lbergstrom+bors@mozilla.com> | 2016-05-02 16:48:45 -0700 |
commit | 361b2b900eeea821a9a79d8566f8cd31dfb1b1ea (patch) | |
tree | 2c822ad67f4c5ecb338b38912e236fee5e81c7c1 /python/tidy/servo_tidy/tidy.py | |
parent | a8e82440ff5ba790e40b4e6437e9882b4f4619c4 (diff) | |
parent | 6379243485767550fa4192d96e15e3712ebb0d04 (diff) | |
download | servo-361b2b900eeea821a9a79d8566f8cd31dfb1b1ea.tar.gz servo-361b2b900eeea821a9a79d8566f8cd31dfb1b1ea.zip |
Auto merge of #10975 - mbrubeck:more-deps, r=KiChjang
Update even more dependencies
Adds a temporary exception to allow multiple versions of lazy_static. PRs have already been filed on the packages that are still using the old version.
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10975)
<!-- Reviewable:end -->
Diffstat (limited to 'python/tidy/servo_tidy/tidy.py')
-rw-r--r-- | python/tidy/servo_tidy/tidy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tidy/servo_tidy/tidy.py b/python/tidy/servo_tidy/tidy.py index 6ddb72d416f..c0bfce1a5f0 100644 --- a/python/tidy/servo_tidy/tidy.py +++ b/python/tidy/servo_tidy/tidy.py @@ -231,7 +231,7 @@ def check_lock(file_name, contents): raise StopIteration # package names to be neglected (as named by cargo) - exceptions = ["bitflags", "xml-rs", "byteorder"] + exceptions = ["bitflags", "xml-rs", "lazy_static"] import toml content = toml.loads(contents) |