| Index: build/android/avd.py
|
| diff --git a/build/android/avd.py b/build/android/avd.py
|
| index ddff11ae543f5ee8d13250fdb80a0601511300b7..c45544f8bc78ec2a29287723c26e4453ecffad32 100755
|
| --- a/build/android/avd.py
|
| +++ b/build/android/avd.py
|
| @@ -70,8 +70,8 @@ def main(argv):
|
| android = os.path.join(constants.EMULATOR_SDK_ROOT, 'sdk', 'tools',
|
| 'android')
|
| avds_output = cmd_helper.GetCmdOutput([android, 'list', 'avd'])
|
| - names = re.findall('Name: (\w+)', avds_output)
|
| - api_levels = re.findall('API level (\d+)', avds_output)
|
| + names = re.findall(r'Name: (\w+)', avds_output)
|
| + api_levels = re.findall(r'API level (\d+)', avds_output)
|
| try:
|
| avd_index = names.index(options.name)
|
| except ValueError:
|
|
|