1
1
mirror of https://github.com/KenanZhu/AutoLibrary.git synced 2026-06-18 07:23:03 +08:00

style(*): unify punctuation marks from Chinese to English

Replace the ',' with ',' and ':' with ':'.
This commit is contained in:
2025-11-08 11:49:30 +08:00
parent 3ef301f199
commit 7d92717136
3 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -70,7 +70,7 @@ class AutoLibWorker(QThread):
os.path.exists(path) for path in self.__config_paths.values()
):
self.showTraceSignal.emit(
"配置文件路径不存在请检查配置文件路径是否正确。"
"配置文件路径不存在, 请检查配置文件路径是否正确。"
)
return False
return True
@@ -102,7 +102,7 @@ class AutoLibWorker(QThread):
self.showTraceSignal.emit("AutoLibrary 运行结束")
except Exception as e:
self.showTraceSignal.emit(
f"AutoLibrary 运行时发生异常{e}"
f"AutoLibrary 运行时发生异常 : {e}"
)
finally:
self.finishedSignal.emit()