Chromium Code Reviews| Index: runtime/tools/android_finder.py |
| =================================================================== |
| --- runtime/tools/android_finder.py (revision 14156) |
| +++ runtime/tools/android_finder.py (working copy) |
| @@ -174,7 +174,9 @@ |
| continue |
| match = line_re.match(line) |
| if match is None: |
| - raise utils.Error('Match failed') |
| + sys.stderr.write('Match fail %s\n' % str(line)) |
| + continue |
| + #raise utils.Error('Match failed') |
|
vsm
2012/10/26 23:04:42
Delete the commented code.
|
| entry[match.group(1)] = match.group(2) |
| if len(entry) > 0: |
| result.append(entry) |