mirror of
https://github.com/LC044/WeChatMsg
synced 2025-02-22 19:02:17 +08:00
修复类型不正确
okSignal = pyqtSignal(int),见 output.py
This commit is contained in:
parent
f0d537a51d
commit
20bededea8
@ -23,7 +23,7 @@ class CSVExporter(ExporterBase):
|
|||||||
for msg in messages:
|
for msg in messages:
|
||||||
other_data = [msg[12].remark, msg[12].nickName, msg[12].wxid] if self.contact.is_chatroom else []
|
other_data = [msg[12].remark, msg[12].nickName, msg[12].wxid] if self.contact.is_chatroom else []
|
||||||
writer.writerow([*msg[:9], *other_data])
|
writer.writerow([*msg[:9], *other_data])
|
||||||
self.okSignal.emit('ok')
|
self.okSignal.emit(1)
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
self.to_csv()
|
self.to_csv()
|
||||||
|
Loading…
Reference in New Issue
Block a user