From 0f8343ce37cdb4ce7fe147579a0d431761113785 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Wed, 23 Sep 2015 07:39:50 -0600 Subject: [PATCH] servo: Merge #7716 - Fix a comparison that should be an assignment in host_triple() (from servo:host-triple-assign); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 83435d77650382d5901603170f028f5888ea82c1 --- servo/python/servo/command_base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/servo/python/servo/command_base.py b/servo/python/servo/command_base.py index af39ffb8bdf7..4de1caf5f711 100644 --- a/servo/python/servo/command_base.py +++ b/servo/python/servo/command_base.py @@ -36,9 +36,9 @@ def host_triple(): elif os_type == "darwin": os_type = "apple-darwin" elif os_type == "android": - os_type == "linux-androideabi" + os_type = "linux-androideabi" else: - os_type == "unknown" + os_type = "unknown" cpu_type = subprocess.check_output(["uname", "-m"]).strip().lower() if cpu_type in ["i386", "i486", "i686", "i768", "x86"]: