Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(127)

Unified Diff: runtime/tools/android_finder.py

Issue 11315015: Make parser of the android package lister be more forgiving. Without this (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698