diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-09-23 09:40:08 +0200 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-09-23 09:40:08 +0200 |
commit | 65e50be6571e4039c684d7039bf26211d0f14c91 (patch) | |
tree | 6ee4ba31a0a9e3cf99dfc0fee3193b283209e62e /python/servo/command_base.py | |
parent | eca448363de576cf0108ac4d37fbbe1aeb659598 (diff) | |
download | servo-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.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"]: |