mirror of
https://github.com/LC044/WeChatMsg
synced 2024-11-12 20:21:21 +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:
|
||||
other_data = [msg[12].remark, msg[12].nickName, msg[12].wxid] if self.contact.is_chatroom else []
|
||||
writer.writerow([*msg[:9], *other_data])
|
||||
self.okSignal.emit('ok')
|
||||
self.okSignal.emit(1)
|
||||
|
||||
def run(self):
|
||||
self.to_csv()
|
||||
|
Loading…
Reference in New Issue
Block a user