aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/devenv_commands.py
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2016-11-08 09:28:30 -0500
committerCorey Farwell <coreyf@rwell.org>2016-11-08 09:28:30 -0500
commit04df787299a44b8082f1a0e02114d1a7f8dbd377 (patch)
tree171cdc0456e260f8904c291fcc3a857b4c645648 /python/servo/devenv_commands.py
parent085c52dfbce125b9f777eadb1ed149e04548fc45 (diff)
downloadservo-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.py2
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: