1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-18 12:06:08 +00:00

utils/android: Fix typo in variable assignment

This commit is contained in:
Marc Bonnici 2018-07-02 15:28:06 +01:00 committed by setrofim
parent 5231bbcf71
commit f4838b4466

View File

@ -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