From 1a58dba03ecaa5b67df47b3e7c7c592cadb6f145 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Sat, 10 Aug 2024 00:56:53 -0400 Subject: Use correct feature name for JS backtraces. (#32998) Signed-off-by: Josh Matthews --- python/servo/command_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/servo/command_base.py') 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"]: -- cgit v1.2.3