This commit is contained in:
gyptazy
2025-03-01 18:33:16 +01:00
parent fb50afe473
commit e0ed3773af
2 changed files with 4 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ from utils.logger import SystemdLogger
if not PYYAML_PRESENT:
print("The required library 'pyyaml' is not installed.")
print("Error: The required library 'pyyaml' is not installed.")
sys.exit(1)

View File

@@ -25,15 +25,15 @@ from utils.logger import SystemdLogger
if not PROXMOXER_PRESENT:
print("The required library 'proxmoxer' is not installed.")
print("Error: The required library 'proxmoxer' is not installed.")
sys.exit(1)
if not URLLIB3_PRESENT:
print("The required library 'urllib3' is not installed.")
print("Error: The required library 'urllib3' is not installed.")
sys.exit(1)
if not REQUESTS_PRESENT:
print("The required library 'requests' is not installed.")
print("Error: The required library 'requests' is not installed.")
sys.exit(1)