Skip to content

Commit

Permalink
Address frewsxcv's comment on unreliability of is
Browse files Browse the repository at this point in the history
  • Loading branch information
edunham committed May 31, 2016
1 parent 9dc1a6e commit ab9584a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/servo/package_commands.py
Expand Up @@ -114,7 +114,7 @@ def install(self, release=False, dev=False):
apk_path = binary_path + ".apk"
if not path.exists(apk_path):
result = Registrar.dispatch("package", context=self.context, release=release, dev=dev)
if result is not 0:
if result != 0:
return result

print(["adb", "install", "-r", apk_path])
Expand Down

0 comments on commit ab9584a

Please sign in to comment.