forked from M-Labs/artiq
gui/log: split lines correctly
This commit is contained in:
parent
69a531edf4
commit
4e0e8341ca
|
@ -63,7 +63,7 @@ class Model(QtCore.QAbstractItemModel):
|
||||||
def append(self, v):
|
def append(self, v):
|
||||||
severity, source, timestamp, message = v
|
severity, source, timestamp, message = v
|
||||||
self.pending_entries.append((severity, source, timestamp,
|
self.pending_entries.append((severity, source, timestamp,
|
||||||
message.split("\n")))
|
message.splitlines()))
|
||||||
|
|
||||||
def timer_tick(self):
|
def timer_tick(self):
|
||||||
if not self.pending_entries:
|
if not self.pending_entries:
|
||||||
|
|
Loading…
Reference in New Issue