diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-05-17 23:27:02 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-05-18 00:23:18 +0200 |
commit | 3cda52c6a42af81c47bd35b8aa7093dce2413482 (patch) | |
tree | 7f6a2c42b2852b287f9a9d7bee178ba4192dc6dd /python/tidy/servo_tidy/tidy.py | |
parent | 9f4c04ca13b7a256e52822d64551698ebcc0702d (diff) | |
download | servo-3cda52c6a42af81c47bd35b8aa7093dce2413482.tar.gz servo-3cda52c6a42af81c47bd35b8aa7093dce2413482.zip |
Disallow bitflags dupes again
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 1007fcb0440..c3c603c7c11 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", "lazy_static"] + exceptions = ["lazy_static"] import toml content = toml.loads(contents) |