fix ssl_decrypt replace logging with message window and path corrected

This commit is contained in:
2025-06-08 00:34:44 +02:00
parent f682858051
commit 298a3da73b
5 changed files with 41 additions and 42 deletions

View File

@ -57,7 +57,7 @@ class AppConfig:
# Updates
# 1 = 1. Year, 09 = Month of the Year, 2924 = Day and Year of the Year
VERSION: str = "v. 2.04.1725"
VERSION: str = "v. 2.06.0725"
UPDATE_URL: str = "https://git.ilunix.de/api/v1/repos/punix/Wire-Py/releases"
DOWNLOAD_URL: str = "https://git.ilunix.de/punix/Wire-Py/archive"
@ -153,6 +153,8 @@ class AppConfig:
text=True,
check=False,
)
if process.returncode == 0:
logging.info(process.stdout, exc_info=True)
if process.stderr:
logging.error(f"{process.stderr} Code: {process.returncode}", exc_info=True)