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'}):