Remove craziness around native tag bug line regex.

This commit is contained in:
Jake Wharton
2013-07-03 16:35:50 -07:00
parent a99784eaa5
commit 9ca81d87df
+1 -1
View File
@@ -132,7 +132,7 @@ PID_KILL = re.compile(r'^Killing (\d+):([a-zA-Z0-9._]+)/[^:]+: (.*)$')
PID_LEAVE = re.compile(r'^No longer want ([a-zA-Z0-9._]+) \(pid (\d+)\): .*$') PID_LEAVE = re.compile(r'^No longer want ([a-zA-Z0-9._]+) \(pid (\d+)\): .*$')
PID_DEATH = re.compile(r'^Process ([a-zA-Z0-9._]+) \(pid (\d+)\) has died.?$') PID_DEATH = re.compile(r'^Process ([a-zA-Z0-9._]+) \(pid (\d+)\) has died.?$')
LOG_LINE = re.compile(r'^([A-Z])/([^\(]+)\( *(\d+)\): (.*)$') LOG_LINE = re.compile(r'^([A-Z])/([^\(]+)\( *(\d+)\): (.*)$')
BUG_LINE = re.compile(r'^(?!.*(nativeGetEnabledTags)).*$') BUG_LINE = re.compile(r'.*nativeGetEnabledTags.*')
adb_command = ['adb'] adb_command = ['adb']
if args.device_serial: if args.device_serial: