From f4838b44668059e0f74df8b4153c3ff9fe056238 Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Mon, 2 Jul 2018 15:28:06 +0100 Subject: [PATCH] utils/android: Fix typo in variable assignment --- wa/utils/android.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wa/utils/android.py b/wa/utils/android.py index 9a0c4c49..d1b59394 100644 --- a/wa/utils/android.py +++ b/wa/utils/android.py @@ -18,7 +18,7 @@ class LogcatEvent(object): def __init__(self, timestamp, pid, tid, level, tag, message): self.timestamp = timestamp self.pid = pid - self.tid = pid + self.tid = tid self.level = level self.tag = tag self.message = message