| Index: build/android/adb_install_apk.py
|
| diff --git a/build/android/adb_install_apk.py b/build/android/adb_install_apk.py
|
| index 1e370f8fa8ea4c765a5bb003b94a666473c9d08b..a8577fae195ec13b23b0586b7a9659bd5d481afe 100755
|
| --- a/build/android/adb_install_apk.py
|
| +++ b/build/android/adb_install_apk.py
|
| @@ -75,11 +75,11 @@ def main():
|
| try:
|
| device.Install(apk, reinstall=args.keep_data)
|
| except device_errors.CommandFailedError:
|
| - logging.exception('Failed to install %s', args.apk)
|
| + logging.exception('Failed to install %s', args.apk_name)
|
| device_blacklist.ExtendBlacklist([str(device)])
|
| logging.warning('Blacklisting %s', str(device))
|
| except device_errors.CommandTimeoutError:
|
| - logging.exception('Timed out while installing %s', args.apk)
|
| + logging.exception('Timed out while installing %s', args.apk_name)
|
| device_blacklist.ExtendBlacklist([str(device)])
|
| logging.warning('Blacklisting %s', str(device))
|
|
|
|
|