mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-26 14:46:02 +00:00
Bug 872507 - Tweak logcat java-exception regex to strip more whitespace; r=jmaher
This commit is contained in:
parent
8154e0de42
commit
e50a23d3d6
@ -105,7 +105,7 @@ class RemoteAutomation(Automation):
|
||||
#
|
||||
# -> java.lang.NullPointerException at org.mozilla.gecko.GeckoApp$21.run(GeckoApp.java:1833)
|
||||
found_exception = True
|
||||
logre = re.compile(r".*\):\s(.*)")
|
||||
logre = re.compile(r".*\): \t?(.*)")
|
||||
m = logre.search(logcat[i+1])
|
||||
if m and m.group(1):
|
||||
top_frame = m.group(1)
|
||||
|
Loading…
x
Reference in New Issue
Block a user