diff options
author | Josh Matthews <josh@joshmatthews.net> | 2024-08-10 00:56:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-10 04:56:53 +0000 |
commit | 1a58dba03ecaa5b67df47b3e7c7c592cadb6f145 (patch) | |
tree | ad9940c66aeda1dc0275a76300ed22be292e2a58 | |
parent | 2ebb71f08a9e2521a2fd277c2bc2b54b9e21dd8d (diff) | |
download | servo-1a58dba03ecaa5b67df47b3e7c7c592cadb6f145.tar.gz servo-1a58dba03ecaa5b67df47b3e7c7c592cadb6f145.zip |
Use correct feature name for JS backtraces. (#32998)
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
-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 4b5de868531..608f44d636d 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -1044,7 +1044,7 @@ class CommandBase(object): if self.config["build"]["webgl-backtrace"]: features.append("webgl-backtrace") if self.config["build"]["dom-backtrace"]: - features.append("dom-backtrace") + features.append("js_backtrace") args += ["--features", " ".join(features)] if with_debug_assertions or self.config["build"]["debug-assertions"]: |