From b3e5f5d219c588812af67b2d2c8d414ddbb11d8b Mon Sep 17 00:00:00 2001 From: Jah-yee <166608075+Jah-yee@users.noreply.github.com> Date: Tue, 23 Jun 2026 21:55:45 +0800 Subject: [PATCH] =?UTF-8?q?Fix=20typo:=20ocurred=20=E2=86=92=20occurred=20?= =?UTF-8?q?in=20error=20messages?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uv/uv_sheet.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uv/uv_sheet.py b/uv/uv_sheet.py index d700417..027ab00 100644 --- a/uv/uv_sheet.py +++ b/uv/uv_sheet.py @@ -293,7 +293,7 @@ def on_draw_post_pixel(self, context): except Exception as e: traceback.print_exc() self.wants_quit = True # Avoid flooding the console - self.report({'ERROR'}, f"An exception ocurred: {e}") + self.report({'ERROR'}, f"An exception occurred: {e}") draw_help_box(30.0, 30.0, self.help_texts, self.help_title, width=280.0) @@ -376,7 +376,7 @@ def modal(self, context, event): self.pop_state() # Exit the offending state if not self.state: self.wants_quit = True - self.report({'ERROR'}, f"An exception ocurred: {e}") + self.report({'ERROR'}, f"An exception occurred: {e}") if not handled: if is_event_single_press(event, {'ESC', 'RIGHTMOUSE'}):