| 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 a4c3a8b9bde43f1bc9abce3a0a91966cb3069923..805df6517eb6580ebd43d9d2091a8401935709fa 100644
|
| --- a/build/android/pylib/device/device_utils.py
|
| +++ b/build/android/pylib/device/device_utils.py
|
| @@ -587,7 +587,7 @@ class DeviceUtils(object):
|
| if raw:
|
| cmd.append('-r')
|
| for k, v in extras.iteritems():
|
| - cmd.extend(['-e', k, v])
|
| + cmd.extend(['-e', str(k), str(v)])
|
| cmd.append(component)
|
| return self.RunShellCommand(cmd, check_return=True)
|
|
|
|
|