diff options
-rw-r--r-- | python/servo/command_base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index af39ffb8bdf..4de1caf5f71 100644 --- a/python/servo/command_base.py +++ b/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"]: |