| Index: build/android/update_verification.py
|
| diff --git a/build/android/update_verification.py b/build/android/update_verification.py
|
| index 29589f330b8954c150de1a5eebdc423e76ba43c2..9539d94c3fae78ff932fee6698135f453ba04fe9 100755
|
| --- a/build/android/update_verification.py
|
| +++ b/build/android/update_verification.py
|
| @@ -12,8 +12,7 @@
|
| import sys
|
| import time
|
|
|
| -from pylib.device import adb_wrapper
|
| -from pylib.device import device_filter
|
| +from pylib import android_commands
|
| from pylib.device import device_utils
|
|
|
| def _SaveAppData(device, package_name, from_apk=None, data_dir=None):
|
| @@ -109,8 +108,7 @@
|
| parser.print_help(sys.stderr)
|
| parser.error('Unknown arguments: %s.' % args)
|
|
|
| - devices = adb_wrapper.AdbWrapper.Devices(
|
| - filters=device_filter.DefaultFilters())
|
| + devices = android_commands.GetAttachedDevices()
|
| if len(devices) != 1:
|
| parser.error('Exactly 1 device must be attached.')
|
| device = device_utils.DeviceUtils(devices[0])
|
|
|