diff options
author | michaelgrigoryan25 <56165400+michaelgrigoryan25@users.noreply.github.com> | 2023-05-22 19:12:34 +0400 |
---|---|---|
committer | michaelgrigoryan25 <56165400+michaelgrigoryan25@users.noreply.github.com> | 2023-05-22 19:12:34 +0400 |
commit | b25f9c2d75b59b6be715251e02e8fe59200de0b2 (patch) | |
tree | 06d8fdf37149f624b5c496e3d91c8f3caf4956fd /python/servo/post_build_commands.py | |
parent | 05e1e0ea9e9c2f22a3db932e07e7750487a8ffec (diff) | |
download | servo-b25f9c2d75b59b6be715251e02e8fe59200de0b2.tar.gz servo-b25f9c2d75b59b6be715251e02e8fe59200de0b2.zip |
Removed MagicLeap occurrences from Python files
Diffstat (limited to 'python/servo/post_build_commands.py')
-rw-r--r-- | python/servo/post_build_commands.py | 4 |
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) |