Index: build/android/adb_logcat_monitor.py |
diff --git a/build/android/adb_logcat_monitor.py b/build/android/adb_logcat_monitor.py |
index a2acfd1520b69e3aef0bed4309636bab214fcb9b..a5ae785585f5e3c709b917fe83b24e47163578f3 100755 |
--- a/build/android/adb_logcat_monitor.py |
+++ b/build/android/adb_logcat_monitor.py |
@@ -83,7 +83,7 @@ def GetAttachedDevices(adb_cmd): |
stderr=subprocess.PIPE).communicate() |
if err: |
logging.warning('adb device error %s', err.strip()) |
- return re.findall('^(\w+)\tdevice$', out, re.MULTILINE) |
+ return re.findall('^(\S+)\tdevice$', out, re.MULTILINE) |
except TimeoutException: |
logging.warning('"adb devices" command timed out') |
return [] |