mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 872507 - Tweak logcat java-exception regex to strip more whitespace; r=jmaher
This commit is contained in:
parent
e810b729f7
commit
b94948dc95
@ -105,7 +105,7 @@ class RemoteAutomation(Automation):
|
|||||||
#
|
#
|
||||||
# -> java.lang.NullPointerException at org.mozilla.gecko.GeckoApp$21.run(GeckoApp.java:1833)
|
# -> java.lang.NullPointerException at org.mozilla.gecko.GeckoApp$21.run(GeckoApp.java:1833)
|
||||||
found_exception = True
|
found_exception = True
|
||||||
logre = re.compile(r".*\):\s(.*)")
|
logre = re.compile(r".*\): \t?(.*)")
|
||||||
m = logre.search(logcat[i+1])
|
m = logre.search(logcat[i+1])
|
||||||
if m and m.group(1):
|
if m and m.group(1):
|
||||||
top_frame = m.group(1)
|
top_frame = m.group(1)
|
||||||
|
Loading…
Reference in New Issue
Block a user