We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ec0de5 commit 33947deCopy full SHA for 33947de
1 file changed
examples/config-tool/cfg_usbsid_GUI.py
@@ -34,9 +34,9 @@ def __init__(self, root):
34
35
# Sprawdź czy pliki istnieją
36
if not os.path.exists(self.exe_path):
37
- messagebox.showerror("Error", f"cfg_usbsid.exe not found at: {self.exe_path}")
+ messagebox.showerror("Error", f"{toolexe} not found at: {self.exe_path}")
38
if not os.path.exists(self.default_ini_path):
39
- messagebox.showwarning("Warning", f"default.ini not found at: {self.default_ini_path}")
+ messagebox.showwarning("Warning", f"{toolini} not found at: {self.default_ini_path}")
40
41
# Konfiguracja
42
self.config = configparser.ConfigParser()
0 commit comments