fix ssl_encrypt.py read user_log datei added again
This commit is contained in:
@ -89,7 +89,10 @@ class AppConfig:
|
||||
"""Ensures that all required directories exist"""
|
||||
if not cls.CONFIG_DIR.exists():
|
||||
cls.CONFIG_DIR.mkdir(parents=True, exist_ok=True)
|
||||
cls.KEYS_FILE.touch()
|
||||
cls.TEMP_DIR.mkdir(parents=True, exist_ok=True)
|
||||
if not cls.KEYS_FILE.exists():
|
||||
cls.KEYS_FILE.touch()
|
||||
|
||||
@classmethod
|
||||
def create_default_settings(cls) -> None:
|
||||
|
Reference in New Issue
Block a user