diff options
author | bors-servo <infra@servo.org> | 2023-05-29 13:39:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-29 13:39:41 +0200 |
commit | cab7694b086807f12efd0b396bbb1bc609a015a0 (patch) | |
tree | 667325cb4197fd3fb5fdbf4b5b2f196e0600f9c8 /python/servo/command_base.py | |
parent | 9a93c218675374eb4d57fa2d55f1bdadb831ac8d (diff) | |
parent | f2e067099f1ded62de674ff7ef4bc7c4cf521aa2 (diff) | |
download | servo-cab7694b086807f12efd0b396bbb1bc609a015a0.tar.gz servo-cab7694b086807f12efd0b396bbb1bc609a015a0.zip |
Auto merge of #29807 - sagudev:pyfail, r=mrobinson
Propagate status on `build_like_command_arguments`
As observed in #29805
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes fix #29806
<!-- Either: -->
- [ ] There are tests for these changes OR
- [ ] These changes do not require tests because ___
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r-- | python/servo/command_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 0d2e794eba7..c7f3c326c4a 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -789,7 +789,7 @@ class CommandBase(object): self.features = kwargs.get("features", None) or [] self.configure_media_stack(kwargs['media_stack']) - original_function(self, *args, **kwargs) + return original_function(self, *args, **kwargs) decorators.reverse() decorated_function = configuration_decorator |