| Index: build/android/pylib/device/device_utils.py
|
| diff --git a/build/android/pylib/device/device_utils.py b/build/android/pylib/device/device_utils.py
|
| index 6b1a91cefd3869327b7273632de54668b1c262af..a1b4117f7b963887e8516526ec0fc878ba5c1c8a 100644
|
| --- a/build/android/pylib/device/device_utils.py
|
| +++ b/build/android/pylib/device/device_utils.py
|
| @@ -1046,6 +1046,8 @@ class DeviceUtils(object):
|
| """
|
| def find_property(lines, property_name):
|
| for index, line in enumerate(lines):
|
| + if line.strip() == '':
|
| + continue
|
| key, value = (s.strip() for s in line.split('=', 1))
|
| if key == property_name:
|
| return index, value
|
|
|