diff --git a/start.py b/start.py index 9a6d22c..07511a5 100644 --- a/start.py +++ b/start.py @@ -134,7 +134,7 @@ class MainWindow(QMainWindow): def open_wcplus(self): if self.wcplus is False: - subprocess.Popen('.\wechat.exe') + subprocess.Popen('.\wcplus.exe') self.wcplus = True def open_websites_xlsx(self): @@ -211,9 +211,9 @@ class MainWindow(QMainWindow): def closeEvent(self, event): if self.wcplus: try: - subprocess.Popen(['taskkill', '/F', '/IM', 'wechat.exe']) + subprocess.Popen(['taskkill', '/F', '/IM', 'wcplus.exe']) except Exception as e: - print(f"Error while terminating WeChat.exe: {str(e)}") + print(f"Error while terminating wcplus.exe: {str(e)}") self.wcplus = False if self.worker_thread: self.worker_thread.close() diff --git a/wechat.exe b/wcplus.exe similarity index 100% rename from wechat.exe rename to wcplus.exe