summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/update/create_partial_update.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/update/create_partial_update.py b/bin/update/create_partial_update.py
index 28e6cf510c42..9412bcd6e962 100755
--- a/bin/update/create_partial_update.py
+++ b/bin/update/create_partial_update.py
@@ -58,7 +58,7 @@ def download_mar_for_update_channel_and_platform(config, platform, temp_dir):
base_url = config.server_url + "update/partial-targets/1/"
url = base_url + platform + "/" + config.channel
r = requests.get(url)
- if r.status_code is not 200:
+ if r.status_code != 200:
print(r.content)
raise Exception("download failed")