def chech_folders():
if not os.path.exists(arcs_folders):
- print(f"{bcolors.FAIL}Error: The directory does not exist: {arcs_folders}{bcolors.ENDC}")
+ print(f"{bcolors.RED}Error: The directory does not exist: {arcs_folders}{bcolors.ENDC}")
exit(1)
if not os.path.exists(html_files_path):
- print(f"{bcolors.FAIL}Error: The directory does not exist: {html_files_path}{bcolors.ENDC}")
+ print(f"{bcolors.RED}Error: The directory does not exist: {html_files_path}{bcolors.ENDC}")
exit(1)
if not os.path.exists(default_image_path):
- print(f"{bcolors.FAIL}Error: The default image does not exist: {default_image_path}{bcolors.ENDC}")
+ print(f"{bcolors.RED}Error: The default image does not exist: {default_image_path}{bcolors.ENDC}")
exit(1)
html_file_path = html_files_path + "Arc Overview.html"
if not os.path.exists(html_file_path):
- print(f"{bcolors.FAIL}Error: The HTML file does not exist: {html_file_path}{bcolors.ENDC}")
+ print(f"{bcolors.RED}Error: The HTML file does not exist: {html_file_path}{bcolors.ENDC}")
exit(1)