aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/command_base.py
diff options
context:
space:
mode:
authorMs2ger <ms2ger@gmail.com>2015-09-23 09:40:08 +0200
committerMs2ger <ms2ger@gmail.com>2015-09-23 09:40:08 +0200
commit65e50be6571e4039c684d7039bf26211d0f14c91 (patch)
tree6ee4ba31a0a9e3cf99dfc0fee3193b283209e62e /python/servo/command_base.py
parenteca448363de576cf0108ac4d37fbbe1aeb659598 (diff)
downloadservo-65e50be6571e4039c684d7039bf26211d0f14c91.tar.gz
servo-65e50be6571e4039c684d7039bf26211d0f14c91.zip
Fix a comparison that should be an assignment in host_triple().
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r--python/servo/command_base.py4
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"]: