From 08359130e2891409e23fdb4c0e30c6c946746c5d Mon Sep 17 00:00:00 2001 From: Ian Burgwin Date: Fri, 24 Jan 2020 06:01:47 -0800 Subject: [PATCH] gui-custominstall: add unused end argument to log_handle --- gui-custominstall.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui-custominstall.py b/gui-custominstall.py index e04d5d8..fa3df27 100644 --- a/gui-custominstall.py +++ b/gui-custominstall.py @@ -79,7 +79,7 @@ class CustomInstallGui(tk.Frame): # self.debug_values() def start_install(): - def log_handle(message): self.add_log_msg(message) + def log_handle(message, end=None): self.add_log_msg(message) def percentage_handle(percent, total_read, size): self.progress['value'] = percent installer.event.on_log_msg += log_handle @@ -196,4 +196,4 @@ root = tk.Tk() app = CustomInstallGui(root) app.start() -root.mainloop() \ No newline at end of file +root.mainloop()