aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo
diff options
context:
space:
mode:
authormichaelgrigoryan25 <56165400+michaelgrigoryan25@users.noreply.github.com>2023-05-22 19:16:53 +0400
committermichaelgrigoryan25 <56165400+michaelgrigoryan25@users.noreply.github.com>2023-05-22 19:16:53 +0400
commit62f924c74d6b01538f92d88e2eb3fea3e601a471 (patch)
tree4b54314a0cb6c3ecfd87970ecd624250c12df8ae /python/servo
parentb25f9c2d75b59b6be715251e02e8fe59200de0b2 (diff)
downloadservo-62f924c74d6b01538f92d88e2eb3fea3e601a471.tar.gz
servo-62f924c74d6b01538f92d88e2eb3fea3e601a471.zip
Patched a bug
Diffstat (limited to 'python/servo')
-rw-r--r--python/servo/package_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/package_commands.py b/python/servo/package_commands.py
index 186b21fbae9..c9d0832431e 100644
--- a/python/servo/package_commands.py
+++ b/python/servo/package_commands.py
@@ -434,7 +434,7 @@ class PackageCommands(CommandBase):
except BuildNotFound:
print("Rebuilding Servo did not solve the missing build problem.")
return 1
- elif android:
+ if android:
pkg_path = self.get_apk_path(release)
exec_command = [self.android_adb_path(env)]
if emulator and usb: