From bee3fd09c210a192e52f9950c630c49c655de802 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Fri, 29 Jun 2018 21:21:35 +0200 Subject: [PATCH] mach android-emulator: avoid mach error messages for Python exceptions --- python/servo/post_build_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py index b5dd211a144..30c59f417f5 100644 --- a/python/servo/post_build_commands.py +++ b/python/servo/post_build_commands.py @@ -181,7 +181,7 @@ class PostBuildCommands(CommandBase): return 1 env = self.build_env() emulator = path.join(env["ANDROID_SDK"], "emulator", "emulator") - check_call([emulator] + args) + return subprocess.call([emulator] + args) @Command('rr-record', description='Run Servo whilst recording execution with rr',