Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1684)

Unified Diff: build/android/adb_install_apk.py

Issue 21133007: [android] Fix adb_install_apk.py's printed message. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/adb_install_apk.py
diff --git a/build/android/adb_install_apk.py b/build/android/adb_install_apk.py
index 8ff623079913b4087771a9ffc676a27423a1e9f9..36adb79d5a3e6dee776ccb53e76e559f80b4e662 100755
--- a/build/android/adb_install_apk.py
+++ b/build/android/adb_install_apk.py
@@ -45,10 +45,9 @@ def ValidateInstallAPKOption(option_parser, options):
def _InstallApk(args):
apk_path, apk_package, keep_data, device = args
- result = android_commands.AndroidCommands(device=device).ManagedInstall(
+ android_commands.AndroidCommands(device=device).ManagedInstall(
apk_path, keep_data, apk_package)
print '----- Installed on %s -----' % device
- print result
def main(argv):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698