From 62694b1ce77f881e0b3915358d1ab9867502d7fc Mon Sep 17 00:00:00 2001 From: qwint Date: Thu, 22 May 2025 10:37:23 -0500 Subject: [PATCH] Launcher: Fix on File Drop Error Message (#5026) --- Launcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Launcher.py b/Launcher.py index 2520fd6b..8b533a50 100644 --- a/Launcher.py +++ b/Launcher.py @@ -392,7 +392,7 @@ def run_gui(path: str, args: Any) -> None: if file and component: run_component(component, file) else: - logging.warning(f"unable to identify component for {file}") + logging.warning(f"unable to identify component for {filename}") def _on_keyboard(self, window: Window, key: int, scancode: int, codepoint: str, modifier: list[str]): # Activate search as soon as we start typing, no matter if we are focused on the search box or not.