aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/post_build_commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/servo/post_build_commands.py')
-rw-r--r--python/servo/post_build_commands.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py
index 2450991080b..74af93fb0c9 100644
--- a/python/servo/post_build_commands.py
+++ b/python/servo/post_build_commands.py
@@ -241,7 +241,7 @@ class PostBuildCommands(CommandBase):
'params', nargs='...',
help="Command-line arguments to be passed through to cargo doc")
@CommandBase.build_like_command_arguments
- def doc(self, params, features, target=None, android=False, magicleap=False,
+ def doc(self, params, features, target=None, android=False,
media_stack=None, **kwargs):
self.ensure_bootstrapped(rustup_components=["rust-docs"])
rustc_path = check_output(
@@ -272,7 +272,7 @@ class PostBuildCommands(CommandBase):
features = features or []
- target, android = self.pick_target_triple(target, android, magicleap)
+ target, android = self.pick_target_triple(target, android)
features += self.pick_media_stack(media_stack, target)