mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-04 03:38:26 +02:00
added try except in most function to help debugging error
This commit is contained in:
parent
e4fa9ba95c
commit
17783d82f5
1 changed files with 99 additions and 95 deletions
|
@ -9,6 +9,7 @@ from .check_update import check_update
|
|||
from .translate import translate
|
||||
|
||||
def __init__(self):
|
||||
try:
|
||||
self.language = self.get_language()
|
||||
|
||||
self.root = Tk()
|
||||
|
@ -129,3 +130,6 @@ def __init__(self):
|
|||
|
||||
self.progressbar = ttk.Progressbar(self.root)
|
||||
self.progresslabel = Label(self.root)
|
||||
|
||||
except:
|
||||
self.log_error()
|
||||
|
|
Loading…
Reference in a new issue