diff options
author | Corey Farwell <coreyf@rwell.org> | 2016-11-08 09:28:30 -0500 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2016-11-08 09:28:30 -0500 |
commit | 04df787299a44b8082f1a0e02114d1a7f8dbd377 (patch) | |
tree | 171cdc0456e260f8904c291fcc3a857b4c645648 /python/servo/devenv_commands.py | |
parent | 085c52dfbce125b9f777eadb1ed149e04548fc45 (diff) | |
download | servo-04df787299a44b8082f1a0e02114d1a7f8dbd377.tar.gz servo-04df787299a44b8082f1a0e02114d1a7f8dbd377.zip |
Fix `./mach clippy`.
Fixes https://github.com/servo/servo/issues/13117.
Diffstat (limited to 'python/servo/devenv_commands.py')
-rw-r--r-- | python/servo/devenv_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/devenv_commands.py b/python/servo/devenv_commands.py index 8618041b756..3bc99a55a7f 100644 --- a/python/servo/devenv_commands.py +++ b/python/servo/devenv_commands.py @@ -105,7 +105,7 @@ class MachCommands(CommandBase): '--json', '-j', action="store_true", help='Outputs') def clippy(self, package=None, json=False): - params = ["--features=script/plugins/clippy"] + params = ["--features=clippy"] if package: params += ["-p", package] if json: |