From 20bededea8bb26b304125f0681c5a2cd960e6006 Mon Sep 17 00:00:00 2001 From: zetaloop Date: Thu, 11 Jan 2024 20:01:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=B1=BB=E5=9E=8B=E4=B8=8D?= =?UTF-8?q?=E6=AD=A3=E7=A1=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit okSignal = pyqtSignal(int),见 output.py --- app/DataBase/exporter_csv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/DataBase/exporter_csv.py b/app/DataBase/exporter_csv.py index ae463d8..522b66d 100644 --- a/app/DataBase/exporter_csv.py +++ b/app/DataBase/exporter_csv.py @@ -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()