fixed bug #2407: run.py now understands android device names with spaces

This commit is contained in:
Oleg Sklyarov 2012-10-10 16:59:00 +04:00
parent 9368aa9f7b
commit 3f61b9792b

View File

@ -265,7 +265,8 @@ class RunInfo(object):
self.error = "Could not run adb command: %s (for %s)" % (self.error, self.path)
self.adb = []
else:
connected_devices = re.findall(r"^[^ \t]+[ \t]+device\r?$", adb_res, re.MULTILINE)
# assume here that device name may consists of any characters except newline
connected_devices = re.findall(r"^[^\n]+[ \t]+device\r?$", adb_res, re.MULTILINE)
if len(connected_devices) != 1:
self.error = "Too many (%s) devices are connected. Please specify single device using --serial option" % (len(connected_devices))
self.adb = []