feat: KIAUH v6 - full rewrite of KIAUH in Python #428

Open
dw-0 wants to merge 242 commits from kiauh-v6-dev into master
Showing only changes of commit 51f0713c5a - Show all commits

View File

@@ -12,6 +12,7 @@ from __future__ import annotations
import subprocess
import sys
import textwrap
import traceback
from abc import abstractmethod
from typing import Type, Dict, Optional
@@ -213,4 +214,6 @@ class BaseMenu(metaclass=PostInitCaller):
option.method(opt_index=option.opt_index, opt_data=option.opt_data)
self.run()
except Exception as e:
Logger.print_error(f"An unexpected error occured:\n{e}")
Logger.print_error(
f"An unexpected error occured:\n{e}\n{traceback.format_exc()}"
)