diff options
author | Corey Farwell <coreyf@rwell.org> | 2015-06-03 20:29:13 -0400 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2015-06-04 11:17:34 -0400 |
commit | 848c57653ce1b023a324fb9442059228f5372188 (patch) | |
tree | b7ca6475822fcc2220bfb3d5f76b8d6f5775b957 /python/mach_bootstrap.py | |
parent | 907c051bd1d59621449a399ccf6845b617bdff9d (diff) | |
download | servo-848c57653ce1b023a324fb9442059228f5372188.tar.gz servo-848c57653ce1b023a324fb9442059228f5372188.zip |
Add flake8 to the tidy process for Python files
Fixes #6236
Also included in this commit are the changes need to make flake8 pass
for the existing python file
Diffstat (limited to 'python/mach_bootstrap.py')
-rw-r--r-- | python/mach_bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/mach_bootstrap.py b/python/mach_bootstrap.py index 894cbbf97c0..84de5b22b25 100644 --- a/python/mach_bootstrap.py +++ b/python/mach_bootstrap.py @@ -98,7 +98,7 @@ def bootstrap(topdir): for category, meta in CATEGORIES.items(): mach.define_category(category, meta['short'], meta['long'], - meta['priority']) + meta['priority']) for path in MACH_MODULES: mach.load_commands_from_file(os.path.join(topdir, path)) |